From 2b8be4a3da15a57ca0b3f274651679e542cbca39 Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Sat, 2 May 2026 11:26:22 -0300 Subject: [PATCH] drivers/fb: Fix a symbol missing CONFIG_ This was a mistake that was preveting the boot logo to stay visible for more time. Signed-off-by: Alan C. Assis --- drivers/video/fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fb.c b/drivers/video/fb.c index 881a7b1d94d..4aaf7374d55 100644 --- a/drivers/video/fb.c +++ b/drivers/video/fb.c @@ -2046,7 +2046,7 @@ int fb_register_device(int display, int plane, nxsched_sleep(SPLASH_SLEEP); } -# ifdef VIDEO_FB_SPLASHSCREEN_CLR_ON_EXIT +# ifdef CONFIG_VIDEO_FB_SPLASHSCREEN_CLR_ON_EXIT ret = fb_splash_fill(&vinfo, &pinfo, 0); /* Fill with black to clear LCD */ if (ret < 0) {