summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2020-07-30 19:39:24 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2020-08-21 14:45:26 +1000
commit5ce33eabf4b82ce5ddfb6b3811d150fef050b7c6 (patch)
tree12d8707305fc820c22338166e9e9e6e5ec04bc81
parent12f7ca7a86d38babf4065a0a527649ecb653c6de (diff)
downloadlinux-crypto-5ce33eabf4b82ce5ddfb6b3811d150fef050b7c6.tar.gz
linux-crypto-5ce33eabf4b82ce5ddfb6b3811d150fef050b7c6.zip
crypto: tcrypt - delete duplicated words in messages
Drop the doubled word "failed" in pr_err() messages. Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: "David S. Miller" <davem@davemloft.net> Cc: linux-crypto@vger.kernel.org Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--crypto/tcrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index ba0b7702..acc75872 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -398,7 +398,7 @@ static void test_mb_aead_speed(const char *algo, int enc, int secs,
ret = do_one_aead_op(cur->req, ret);
if (ret) {
- pr_err("calculating auth failed failed (%d)\n",
+ pr_err("calculating auth failed (%d)\n",
ret);
break;
}
@@ -648,7 +648,7 @@ static void test_aead_speed(const char *algo, int enc, unsigned int secs,
crypto_aead_encrypt(req));
if (ret) {
- pr_err("calculating auth failed failed (%d)\n",
+ pr_err("calculating auth failed (%d)\n",
ret);
break;
}