summaryrefslogtreecommitdiffstats
path: root/drivers/crypto/img-hash.c
diff options
context:
space:
mode:
authorJames Hartley2016-08-05 15:00:19 +0200
committerHerbert Xu2016-08-09 12:47:22 +0200
commitfb67740e2fb82c97cca6df24882df4e7c898aae4 (patch)
treea45ef762b03ac23942f14b7f1b76f8a5d36e147a /drivers/crypto/img-hash.c
parentcrypto: img-hash - Add support for export and import (diff)
downloadkernel-qcow2-linux-fb67740e2fb82c97cca6df24882df4e7c898aae4.tar.gz
kernel-qcow2-linux-fb67740e2fb82c97cca6df24882df4e7c898aae4.tar.xz
kernel-qcow2-linux-fb67740e2fb82c97cca6df24882df4e7c898aae4.zip
crypto: img-hash - log a successful probe
Currently the probe function only emits an output on success when debug is specifically enabled. It would be more useful if this happens by default. Signed-off-by: James Hartley <james.hartley@imgtec.com> Reviewed-by: Will Thomas <will.thomas@imgtec.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/img-hash.c')
-rw-r--r--drivers/crypto/img-hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/img-hash.c b/drivers/crypto/img-hash.c
index fd4cd5120f9e..60410d79bbc5 100644
--- a/drivers/crypto/img-hash.c
+++ b/drivers/crypto/img-hash.c
@@ -1031,7 +1031,7 @@ static int img_hash_probe(struct platform_device *pdev)
err = img_register_algs(hdev);
if (err)
goto err_algs;
- dev_dbg(dev, "Img MD5/SHA1/SHA224/SHA256 Hardware accelerator initialized\n");
+ dev_info(dev, "Img MD5/SHA1/SHA224/SHA256 Hardware accelerator initialized\n");
return 0;