Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 651022382c7f8da46cb4872a545ee1da6d097d2a authored by Linus Torvalds on 04 November 2018, 23:37:52 UTC
Linux 4.20-rc1
Tip revision: 6510223
fbcon.h
#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 inline void fb_console_init(void) {}
static inline void fb_console_exit(void) {}
#endif

#endif /* _LINUX_FBCON_H */
back to top