1 #ifndef _LINUX_FBCON_H 2 #define _LINUX_FBCON_H 3 4 #ifdef CONFIG_FRAMEBUFFER_CONSOLE 5 void __init fb_console_init(void); 6 void __exit fb_console_exit(void); 7 int fbcon_fb_registered(struct fb_info *info); 8 void fbcon_fb_unregistered(struct fb_info *info); 9 void fbcon_fb_unbind(struct fb_info *info); 10 void fbcon_suspended(struct fb_info *info); 11 void fbcon_resumed(struct fb_info *info); 12 #else 13 static inline void fb_console_init(void) {} 14 static inline void fb_console_exit(void) {} 15 static inline int fbcon_fb_registered(struct fb_info *info) { return 0; } 16 static inline void fbcon_fb_unregistered(struct fb_info *info) {} 17 static inline void fbcon_fb_unbind(struct fb_info *info) {} 18 static inline void fbcon_suspended(struct fb_info *info) {} 19 static inline void fbcon_resumed(struct fb_info *info) {} 20 #endif 21 22 #endif /* _LINUX_FBCON_H */ 23