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

From: Randy Dunlap
Date: Thu Jul 30 2020 - 22:39:49 EST


Drop the doubled word "failed" in pr_err() messages.


Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>
Cc: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx>
Cc: "David S. Miller" <davem@xxxxxxxxxxxxx>
Cc: linux-crypto@xxxxxxxxxxxxxxx
---
crypto/tcrypt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- 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;
}