From: Anirudh Venkataramanan Date: Wed, 26 Oct 2022 19:16:15 +0000 (-0700) Subject: crypto: tcrypt - Drop module name from print string X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a2ef563000aff04352a4aded7b2d2bf19a1674bf;p=linux.git 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 Signed-off-by: Herbert Xu --- diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 78b236bc9cd81..40e72ec0f5378 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; }