Commit d4db8762 authored by ye xingchen's avatar ye xingchen Committed by Dmitry Torokhov

Input: use sysfs_emit() instead of scnprintf()

Replace calls to scnprintf() in the methods showing device attributes
with sysfs_emit() to simplify the code.
Signed-off-by: default avatarye xingchen <ye.xingchen@zte.com.cn>
Link: https://lore.kernel.org/r/202212021133398847947@zte.com.cnSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent f737020d
...@@ -1365,7 +1365,7 @@ static ssize_t input_dev_show_##name(struct device *dev, \ ...@@ -1365,7 +1365,7 @@ static ssize_t input_dev_show_##name(struct device *dev, \
{ \ { \
struct input_dev *input_dev = to_input_dev(dev); \ struct input_dev *input_dev = to_input_dev(dev); \
\ \
return scnprintf(buf, PAGE_SIZE, "%s\n", \ return sysfs_emit(buf, "%s\n", \
input_dev->name ? input_dev->name : ""); \ input_dev->name ? input_dev->name : ""); \
} \ } \
static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL) static DEVICE_ATTR(name, S_IRUGO, input_dev_show_##name, NULL)
...@@ -1458,7 +1458,7 @@ static ssize_t inhibited_show(struct device *dev, ...@@ -1458,7 +1458,7 @@ static ssize_t inhibited_show(struct device *dev,
{ {
struct input_dev *input_dev = to_input_dev(dev); struct input_dev *input_dev = to_input_dev(dev);
return scnprintf(buf, PAGE_SIZE, "%d\n", input_dev->inhibited); return sysfs_emit(buf, "%d\n", input_dev->inhibited);
} }
static ssize_t inhibited_store(struct device *dev, static ssize_t inhibited_store(struct device *dev,
...@@ -1505,7 +1505,7 @@ static ssize_t input_dev_show_id_##name(struct device *dev, \ ...@@ -1505,7 +1505,7 @@ static ssize_t input_dev_show_id_##name(struct device *dev, \
char *buf) \ char *buf) \
{ \ { \
struct input_dev *input_dev = to_input_dev(dev); \ struct input_dev *input_dev = to_input_dev(dev); \
return scnprintf(buf, PAGE_SIZE, "%04x\n", input_dev->id.name); \ return sysfs_emit(buf, "%04x\n", input_dev->id.name); \
} \ } \
static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL) static DEVICE_ATTR(name, S_IRUGO, input_dev_show_id_##name, NULL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment