Message ID | 1612423453-78809-1-git-send-email-jiapeng.chong@linux.alibaba.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | crypto: picoxcell - convert sysfs sprintf/snprintf family to sysfs_emit | expand |
On Thu, Feb 04, 2021 at 03:24:13PM +0800, Jiapeng Chong wrote: > Fix the following coccicheck warning: > > ./drivers/crypto/picoxcell_crypto.c:1201:8-16: WARNING: use scnprintf > or sprintf. > > Reported-by: Abaci Robot<abaci@linux.alibaba.com> > Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> > --- > drivers/crypto/picoxcell_crypto.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) This driver no longer exists.
diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c index 84f9c16..d7a7def 100644 --- a/drivers/crypto/picoxcell_crypto.c +++ b/drivers/crypto/picoxcell_crypto.c @@ -1198,7 +1198,7 @@ static ssize_t spacc_stat_irq_thresh_show(struct device *dev, { struct spacc_engine *engine = spacc_dev_to_engine(dev); - return snprintf(buf, PAGE_SIZE, "%u\n", engine->stat_irq_thresh); + return sysfs_emit(buf, "%u\n", engine->stat_irq_thresh); } static ssize_t spacc_stat_irq_thresh_store(struct device *dev,
Fix the following coccicheck warning: ./drivers/crypto/picoxcell_crypto.c:1201:8-16: WARNING: use scnprintf or sprintf. Reported-by: Abaci Robot<abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> --- drivers/crypto/picoxcell_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)