blob: 0fac6305d51cadef911d6f8d87f8dd97aca60134 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _LINUX_FBCON_H
#define _LINUX_FBCON_H
#ifdef CONFIG_FRAMEBUFFER_CONSOLE
void __init fb_console_init(void);
void __exit fb_console_exit(void);
#else
static void fb_console_init(void) {}
static void fb_console_exit(void) {}
#endif
#endif /* _LINUX_FBCON_H */
|