From: Ethan Nelson-Moore Date: Tue, 9 Jun 2026 03:35:02 +0000 (-0700) Subject: fbcon: correct CONFIG_FB_TILEBLITTING macro name in #endif comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5c147fda9c6c553bfc2b86e0734b4594f2a9a7d;p=thirdparty%2Flinux.git 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 --- diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c index 6bcfe874e60e2..9077d3b99357a 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) {