* [PATCH RESEND v2] amba: bus: Replace sprintf with sysfs_emit
@ 2026-02-04 9:29 Wang Jiayue
0 siblings, 0 replies; only message in thread
From: Wang Jiayue @ 2026-02-04 9:29 UTC (permalink / raw)
To: linux; +Cc: linux-kernel, Wang Jiayue
Use sysfs_emit() instead of sprintf() when writing to sysfs buffers, as
recommended by the kernel documentation.
Signed-off-by: Wang Jiayue <akaieurus@gmail.com>
---
v2:
* Correct the prefix and content in title.
---
drivers/amba/bus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c
index 952c45ca6e48..59ae95d106ec 100644
--- a/drivers/amba/bus.c
+++ b/drivers/amba/bus.c
@@ -89,7 +89,7 @@ static ssize_t driver_override_show(struct device *_dev,
ssize_t len;
device_lock(_dev);
- len = sprintf(buf, "%s\n", dev->driver_override);
+ len = sysfs_emit(buf, "%s\n", dev->driver_override);
device_unlock(_dev);
return len;
}
@@ -114,7 +114,7 @@ static ssize_t name##_show(struct device *_dev, \
struct device_attribute *attr, char *buf) \
{ \
struct amba_device *dev = to_amba_device(_dev); \
- return sprintf(buf, fmt, arg); \
+ return sysfs_emit(buf, fmt, arg); \
} \
static DEVICE_ATTR_RO(name)
--
2.34.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-02-04 9:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-02-04 9:29 [PATCH RESEND v2] amba: bus: Replace sprintf with sysfs_emit Wang Jiayue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®