From f5c147fda9c6c553bfc2b86e0734b4594f2a9a7d Mon Sep 17 00:00:00 2001 From: Ethan Nelson-Moore Date: Mon, 8 Jun 2026 20:35:02 -0700 Subject: [PATCH] fbcon: correct CONFIG_FB_TILEBLITTING macro name in #endif comment A comment in drivers/video/fbdev/core/fbcon.c incorrectly refers to CONFIG_MISC_TILEBLITTING instead of CONFIG_FB_TILEBLITTING. Correct it. Discovered while searching for CONFIG_* symbols referenced in code but not defined in any Kconfig file. Signed-off-by: Ethan Nelson-Moore Reviewed-by: Thomas Zimmermann Signed-off-by: Helge Deller --- drivers/video/fbdev/core/fbcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c index 6bcfe874e60e..9077d3b99357 100644 --- a/drivers/video/fbdev/core/fbcon.c +++ b/drivers/video/fbdev/core/fbcon.c @@ -768,7 +768,7 @@ static int fbcon_invalid_charcount(struct fb_info *info, unsigned charcount) return 0; } -#endif /* CONFIG_MISC_TILEBLITTING */ +#endif /* CONFIG_FB_TILEBLITTING */ static void fbcon_release(struct fb_info *info) {