mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-07 14:32:23 +00:00
most: usb: replace snprintf in show functions with sysfs_emit
coccicheck complains about the use of snprintf() in sysfs show functions: WARNING use scnprintf or sprintf Use sysfs_emit instead of scnprintf, snprintf or sprintf makes more sense. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: Jing Yao <yao.jing2@zte.com.cn> Link: https://lore.kernel.org/r/20211110025341.136194-1-yao.jing2@zte.com.cn Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1f8ff525f3
commit
cd455ebb74
@ -831,7 +831,7 @@ static ssize_t value_show(struct device *dev, struct device_attribute *attr,
|
|||||||
int err;
|
int err;
|
||||||
|
|
||||||
if (sysfs_streq(name, "arb_address"))
|
if (sysfs_streq(name, "arb_address"))
|
||||||
return snprintf(buf, PAGE_SIZE, "%04x\n", dci_obj->reg_addr);
|
return sysfs_emit(buf, "%04x\n", dci_obj->reg_addr);
|
||||||
|
|
||||||
if (sysfs_streq(name, "arb_value"))
|
if (sysfs_streq(name, "arb_value"))
|
||||||
reg_addr = dci_obj->reg_addr;
|
reg_addr = dci_obj->reg_addr;
|
||||||
@ -843,7 +843,7 @@ static ssize_t value_show(struct device *dev, struct device_attribute *attr,
|
|||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
return snprintf(buf, PAGE_SIZE, "%04x\n", val);
|
return sysfs_emit(buf, "%04x\n", val);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t value_store(struct device *dev, struct device_attribute *attr,
|
static ssize_t value_store(struct device *dev, struct device_attribute *attr,
|
||||||
|
Loading…
Reference in New Issue
Block a user