mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
auxdisplay: img-ascii-lcd: Convert device attribute to sysfs_emit()
Convert the "message" device attribute from sprintf() to sysfs_emit(), as the latter is aware of the PAGE_SIZE buffer. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
This commit is contained in:
parent
7b88e5530f
commit
12a19324eb
@ -326,7 +326,7 @@ static ssize_t message_show(struct device *dev, struct device_attribute *attr,
|
||||
{
|
||||
struct img_ascii_lcd_ctx *ctx = dev_get_drvdata(dev);
|
||||
|
||||
return sprintf(buf, "%s\n", ctx->message);
|
||||
return sysfs_emit(buf, "%s\n", ctx->message);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user