From: Thomas Zimmermann Date: Tue, 15 Jul 2025 12:24:42 +0000 (+0200) Subject: fbcon: Add necessary include statements and forward declarations X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fb357dbadbebc7a9ca3c5ef26f6c792b0e8e1278;p=users%2Fhch%2Fmisc.git fbcon: Add necessary include statements and forward declarations Make the header self contained for including. Signed-off-by: Thomas Zimmermann Reviewed-by: Simona Vetter Link: https://lore.kernel.org/r/20250715122643.137027-6-tzimmermann@suse.de --- diff --git a/include/linux/fbcon.h b/include/linux/fbcon.h index 2382dec6d6ab..81f0e698acbf 100644 --- a/include/linux/fbcon.h +++ b/include/linux/fbcon.h @@ -1,6 +1,13 @@ #ifndef _LINUX_FBCON_H #define _LINUX_FBCON_H +#include + +struct fb_blit_caps; +struct fb_info; +struct fb_var_screeninfo; +struct fb_videomode; + #ifdef CONFIG_FRAMEBUFFER_CONSOLE void __init fb_console_init(void); void __exit fb_console_exit(void);