sfc: use sysfs_emit() to instead of scnprintf()
Follow the advice of the Documentation/filesystems/sysfs.rst and show() should only use sysfs_emit() or sysfs_emit_at() when formatting the value to be returned to user space. Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn> Reviewed-by: Leon Romanovsky <leonro@nvidia.com> Acked-by: Martin Habets <habetsm.xilinx@gmail.com> Link: https://lore.kernel.org/r/202212051021451139126@zte.com.cn Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
15309fb26b
commit
1ab586f517
@@ -1164,7 +1164,7 @@ static ssize_t mcdi_logging_show(struct device *dev,
|
||||
struct efx_nic *efx = dev_get_drvdata(dev);
|
||||
struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
|
||||
|
||||
return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
|
||||
return sysfs_emit(buf, "%d\n", mcdi->logging_enabled);
|
||||
}
|
||||
|
||||
static ssize_t mcdi_logging_store(struct device *dev,
|
||||
|
||||
@@ -1178,7 +1178,7 @@ static ssize_t mcdi_logging_show(struct device *dev,
|
||||
struct efx_nic *efx = dev_get_drvdata(dev);
|
||||
struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
|
||||
|
||||
return scnprintf(buf, PAGE_SIZE, "%d\n", mcdi->logging_enabled);
|
||||
return sysfs_emit(buf, "%d\n", mcdi->logging_enabled);
|
||||
}
|
||||
|
||||
static ssize_t mcdi_logging_store(struct device *dev,
|
||||
|
||||
Reference in New Issue
Block a user