This is an automated email from the ASF dual-hosted git repository.
acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 2b8be4a3da1 drivers/fb: Fix a symbol missing CONFIG_
2b8be4a3da1 is described below
commit 2b8be4a3da15a57ca0b3f274651679e542cbca39
Author: Alan Carvalho de Assis <[email protected]>
AuthorDate: Sat May 2 11:26:22 2026 -0300
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 <[email protected]>
---
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)
{