diff options
| author | Thomas Zimmermann <tzimmermann@suse.de> | 2025-07-15 14:24:42 +0200 |
|---|---|---|
| committer | Thomas Zimmermann <tzimmermann@suse.de> | 2025-08-12 09:07:17 +0200 |
| commit | fb357dbadbebc7a9ca3c5ef26f6c792b0e8e1278 (patch) | |
| tree | 8ca104905bc1c9f1e66e698870fbcbd9204ec7c2 /include/linux | |
| parent | 21b137f651cf9d981e22d2c60a2a8105f50a6361 (diff) | |
fbcon: Add necessary include statements and forward declarations
Make the header self contained for including.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Simona Vetter <simona.vetter@ffwll.ch>
Link: https://lore.kernel.org/r/20250715122643.137027-6-tzimmermann@suse.de
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fbcon.h | 7 |
1 files changed, 7 insertions, 0 deletions
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 <linux/compiler_types.h> + +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); |
