Commit a2ef5630 authored by Anirudh Venkataramanan's avatar Anirudh Venkataramanan Committed by Herbert Xu
Browse files

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: default avatarAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 837a99f5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;
	}