Fix the following coccicheck warning: ./drivers/crypto/picoxcell_crypto.c:1201:8-16: WARNING: use scnprintf or sprintf.
Reported-by: Abaci Robot<ab...@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.ch...@linux.alibaba.com> --- drivers/crypto/picoxcell_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 1.8.3.1