mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 09:04:39 +02:00
fbcon: make display_desc a static array in fbcon_startup()
display_desc is a pointer to a RO string. Instead, switch display_desc to a static array as we are used to. It BTW saves unnecessary 8B on the stack. Signed-off-by: "Jiri Slaby (SUSE)" <jirislaby@kernel.org> Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Helge Deller <deller@gmx.de> Cc: linux-fbdev@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Tested-by: Helge Deller <deller@gmx.de> # parisc STI console Link: https://lore.kernel.org/r/20240122110401.7289-3-jirislaby@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
174657478c
commit
b041c60590
|
|
@ -921,7 +921,7 @@ static void display_to_var(struct fb_var_screeninfo *var,
|
|||
|
||||
static const char *fbcon_startup(void)
|
||||
{
|
||||
const char *display_desc = "frame buffer device";
|
||||
static const char display_desc[] = "frame buffer device";
|
||||
struct fbcon_display *p = &fb_display[fg_console];
|
||||
struct vc_data *vc = vc_cons[fg_console].d;
|
||||
const struct font_desc *font = NULL;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user