summaryrefslogtreecommitdiff
path: root/crypto/tcrypt.c
diff options
context:
space:
mode:
authorAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>2022-10-26 12:16:15 -0700
committerHerbert Xu <herbert@gondor.apana.org.au>2022-11-04 17:33:22 +0800
commitb9319242f26878f3d1bede48082efce0bb69e5e6 (patch)
tree0bc69ce78ff908798a13385f19d5ce9543ed3408 /crypto/tcrypt.c
parentbf63fe797c38e068f41db9de002cec9c11a17f99 (diff)
downloadlinux-crypto-b9319242f26878f3d1bede48082efce0bb69e5e6.tar.gz
linux-crypto-b9319242f26878f3d1bede48082efce0bb69e5e6.zip
crypto: tcrypt - Drop module name from print string
The pr_fmt() define includes KBUILD_MODNAME, and so there's no need for pr_err() to also print it. Drop module name from the print string. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/tcrypt.c')
-rw-r--r--crypto/tcrypt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c
index 78b236bc..40e72ec0 100644
--- a/crypto/tcrypt.c
+++ b/crypto/tcrypt.c
@@ -1329,8 +1329,7 @@ static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
req = skcipher_request_alloc(tfm, GFP_KERNEL);
if (!req) {
- pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
- algo);
+ pr_err("skcipher: Failed to allocate request for %s\n", algo);
goto out;
}