aboutsummaryrefslogtreecommitdiff
path: root/crypto
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
commit129a4dba1b1ba9bb36c46209fc6379beb8926312 (patch)
tree693bef8162e7b92c2df47034508d9234924fbb79 /crypto
parent40a3af45d264af3079e8d894ee42611c99dca4b7 (diff)
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>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/tcrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index ba0b7702f2e9..acc758728b73 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;
}