summaryrefslogtreecommitdiff
path: root/fs/cifsd/crypto_ctx.c
diff options
context:
space:
mode:
authorNamjae Jeon <namjae.jeon@samsung.com>2021-06-28 15:23:19 +0900
committerNamjae Jeon <namjae.jeon@samsung.com>2021-06-28 16:27:55 +0900
commitbde1694aecdb535970787b4f1d07ddb317e191e3 (patch)
treeaae9128d6f6aa0104d8f514270c3fd74c2bb4c67 /fs/cifsd/crypto_ctx.c
parent3fbe43c9f577cadd6b5136fda2e6a6c0b4e0651e (diff)
downloadlwn-bde1694aecdb535970787b4f1d07ddb317e191e3.tar.gz
lwn-bde1694aecdb535970787b4f1d07ddb317e191e3.zip
ksmbd: remove ksmbd_err/info
Use the pr_fmt built into pr_*. and use pr_err/info after removing wrapper ksmbd_err/info. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com> Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifsd/crypto_ctx.c')
-rw-r--r--fs/cifsd/crypto_ctx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifsd/crypto_ctx.c b/fs/cifsd/crypto_ctx.c
index 7b727fe141a6..5f4b1008d17e 100644
--- a/fs/cifsd/crypto_ctx.c
+++ b/fs/cifsd/crypto_ctx.c
@@ -48,12 +48,12 @@ static struct crypto_aead *alloc_aead(int id)
tfm = crypto_alloc_aead("ccm(aes)", 0, 0);
break;
default:
- ksmbd_err("Does not support encrypt ahead(id : %d)\n", id);
+ pr_err("Does not support encrypt ahead(id : %d)\n", id);
return NULL;
}
if (IS_ERR(tfm)) {
- ksmbd_err("Failed to alloc encrypt aead : %ld\n", PTR_ERR(tfm));
+ pr_err("Failed to alloc encrypt aead : %ld\n", PTR_ERR(tfm));
return NULL;
}