fbdev: omapfb: Use sysfs_emit_at() to simplify code
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Thu, 8 Aug 2024 12:14:22 +0000 (14:14 +0200)
committerHelge Deller <deller@gmx.de>
Fri, 30 Aug 2024 16:42:38 +0000 (18:42 +0200)
commit2451a285ee5e8c83bedcee7f4962c828b890becf
tree17bbd054a6511a729d772fafcd893407e02f9be7
parent33ae421ad2b546e472e36d73cf13f2b3b386f713
fbdev: omapfb: Use sysfs_emit_at() to simplify code

This file already uses sysfs_emit(). So be consistent and also use
sysfs_emit_at().

Moreover, size is always < PAGE_SIZE because scnprintf() (and now
sysfs_emit_at()) returns the number of characters written not including the
trailing '\0'. So some tests can be removed.

This slightly simplifies the code and makes it more readable.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/video/fbdev/omap/omapfb_main.c