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>
This commit is contained in:
Anirudh Venkataramanan 2022-10-26 12:16:15 -07:00 committed by Herbert Xu
parent 837a99f590
commit a2ef563000
1 changed files with 1 additions and 2 deletions

View File

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