Daniel Vetter | 6104c37 | 2017-08-01 17:32:07 +0200 | [diff] [blame] | 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 | #else | ||||
Arnd Bergmann | dfc8e91 | 2017-08-07 17:22:14 +0200 | [diff] [blame] | 8 | static inline void fb_console_init(void) {} |
9 | static inline void fb_console_exit(void) {} | ||||
Daniel Vetter | 6104c37 | 2017-08-01 17:32:07 +0200 | [diff] [blame] | 10 | #endif |
11 | |||||
12 | #endif /* _LINUX_FBCON_H */ |