fbdev: sm501fb: Use str_enabled_disabled() helper in sm501fb_init_fb()

Remove hard-coded strings by using the str_enabled_disabled() helper
function.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
Thorsten Blum 2025-01-12 16:41:42 +01:00 committed by Helge Deller
parent e4b6b665df
commit ed3f274b86

View File

@ -27,6 +27,7 @@
#include <linux/clk.h>
#include <linux/console.h>
#include <linux/io.h>
#include <linux/string_choices.h>
#include <linux/uaccess.h>
#include <asm/div64.h>
@ -1712,8 +1713,8 @@ static int sm501fb_init_fb(struct fb_info *fb, enum sm501_controller head,
BUG();
}
dev_info(info->dev, "fb %s %sabled at start\n",
fbname, enable ? "en" : "dis");
dev_info(info->dev, "fb %s %s at start\n",
fbname, str_enabled_disabled(enable));
/* check to see if our routing allows this */