can: at91/janz-ican3: replace snprintf() in show functions with sysfs_emit()
The sysfs show() functions must not use snprintf() when formatting the value to be returned to user space. Fix the following coccicheck warning: | drivers/net/can/at91_can.c:1185: WARNING: use scnprintf or sprintf. | drivers/net/can/janz-ican3.c:1834: WARNING: use scnprintf or sprintf. | | Use sysfs_emit instead of scnprintf or sprintf makes more sense. Link: https://lore.kernel.org/all/1634280624-4816-1-git-send-email-wangqing@vivo.com Signed-off-by: Qing Wang <wangqing@vivo.com> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
This commit is contained in:
parent
fa759a9395
commit
7bc9ab0f42
@ -1170,9 +1170,9 @@ static ssize_t mb0_id_show(struct device *dev,
|
||||
struct at91_priv *priv = netdev_priv(to_net_dev(dev));
|
||||
|
||||
if (priv->mb0_id & CAN_EFF_FLAG)
|
||||
return snprintf(buf, PAGE_SIZE, "0x%08x\n", priv->mb0_id);
|
||||
return sysfs_emit(buf, "0x%08x\n", priv->mb0_id);
|
||||
else
|
||||
return snprintf(buf, PAGE_SIZE, "0x%03x\n", priv->mb0_id);
|
||||
return sysfs_emit(buf, "0x%03x\n", priv->mb0_id);
|
||||
}
|
||||
|
||||
static ssize_t mb0_id_store(struct device *dev,
|
||||
|
@ -1831,7 +1831,7 @@ static ssize_t termination_show(struct device *dev,
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
return snprintf(buf, PAGE_SIZE, "%u\n", mod->termination_enabled);
|
||||
return sysfs_emit(buf, "%u\n", mod->termination_enabled);
|
||||
}
|
||||
|
||||
static ssize_t termination_store(struct device *dev,
|
||||
|
Loading…
x
Reference in New Issue
Block a user