From: Longfang Liu Date: Sat, 13 Mar 2021 07:28:23 +0000 (+0800) Subject: crypto: hisilicon/sec - fixes a printing error X-Git-Tag: v5.15.73~12173^2~123 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b7aef0230418345be1fb77abbb1592801869901;p=platform%2Fkernel%2Flinux-rpi.git crypto: hisilicon/sec - fixes a printing error When the log is output here, the device has not been initialized yet. Signed-off-by: Longfang Liu Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/hisilicon/sec2/sec_crypto.c b/drivers/crypto/hisilicon/sec2/sec_crypto.c index f8355140cd46..2176e4da5b3a 100644 --- a/drivers/crypto/hisilicon/sec2/sec_crypto.c +++ b/drivers/crypto/hisilicon/sec2/sec_crypto.c @@ -546,7 +546,7 @@ static int sec_skcipher_init(struct crypto_skcipher *tfm) crypto_skcipher_set_reqsize(tfm, sizeof(struct sec_req)); ctx->c_ctx.ivsize = crypto_skcipher_ivsize(tfm); if (ctx->c_ctx.ivsize > SEC_IV_SIZE) { - dev_err(SEC_CTX_DEV(ctx), "get error skcipher iv size!\n"); + pr_err("get error skcipher iv size!\n"); return -EINVAL; }