Skip to content

Commit 129a4db

Browse files
rddunlapherbertx
authored andcommitted
crypto: tcrypt - delete duplicated words in messages
Drop the doubled word "failed" in pr_err() messages. Signed-off-by: Randy Dunlap <[email protected]> Cc: Herbert Xu <[email protected]> Cc: "David S. Miller" <[email protected]> Cc: [email protected] Signed-off-by: Herbert Xu <[email protected]>
1 parent 40a3af4 commit 129a4db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crypto/tcrypt.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ static void test_mb_aead_speed(const char *algo, int enc, int secs,
398398
ret = do_one_aead_op(cur->req, ret);
399399

400400
if (ret) {
401-
pr_err("calculating auth failed failed (%d)\n",
401+
pr_err("calculating auth failed (%d)\n",
402402
ret);
403403
break;
404404
}
@@ -648,7 +648,7 @@ static void test_aead_speed(const char *algo, int enc, unsigned int secs,
648648
crypto_aead_encrypt(req));
649649

650650
if (ret) {
651-
pr_err("calculating auth failed failed (%d)\n",
651+
pr_err("calculating auth failed (%d)\n",
652652
ret);
653653
break;
654654
}

0 commit comments

Comments
 (0)