Discussion:
[PATCH] crypto: Remove unnecessary KERN_INFO from testmgr.c
Masanari Iida
2014-10-06 15:37:54 UTC
Permalink
This patch remove unncessary KERN_INFO from pr_info within testmgr.c

Signed-off-by: Masanari Iida <***@gmail.com>
---
crypto/testmgr.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 9459dfd..9d57e3f 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -3710,8 +3710,7 @@ test_done:
panic("%s: %s alg self test failed in fips mode!\n", driver, alg);

if (fips_enabled && !rc)
- pr_info(KERN_INFO "alg: self-tests for %s (%s) passed\n",
- driver, alg);
+ pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);

return rc;
--
2.1.1.273.g97b8860
David Miller
2014-10-06 19:22:51 UTC
Permalink
From: Masanari Iida <***@gmail.com>
Date: Tue, 7 Oct 2014 00:37:54 +0900
Post by Masanari Iida
This patch remove unncessary KERN_INFO from pr_info within testmgr.c
Acked-by: David S. Miller <***@davemloft.net>

Loading...