diff mbox series

[6/6] crypto: tcrypt: delete duplicated words in messages

Message ID 20200731023924.8829-7-rdunlap@infradead.org (mailing list archive)
State Accepted
Delegated to: Herbert Xu
Headers show
Series crypto: delete or fix duplicated words | expand

Commit Message

Randy Dunlap July 31, 2020, 2:39 a.m. UTC
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
---
 crypto/tcrypt.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

--- linux-next-20200730.orig/crypto/tcrypt.c
+++ linux-next-20200730/crypto/tcrypt.c
@@ -398,7 +398,7 @@  static void test_mb_aead_speed(const cha
 					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 *
 						     crypto_aead_encrypt(req));
 
 				if (ret) {
-					pr_err("calculating auth failed failed (%d)\n",
+					pr_err("calculating auth failed (%d)\n",
 					       ret);
 					break;
 				}