Contributors: 12
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Daniel Vetter |
180 |
41.38% |
10 |
25.64% |
| James Simmons |
99 |
22.76% |
6 |
15.38% |
| Richard Henderson |
30 |
6.90% |
1 |
2.56% |
| Ezequiel García |
24 |
5.52% |
1 |
2.56% |
| Unknown |
21 |
4.83% |
1 |
2.56% |
| Antonino A. Daplas |
19 |
4.37% |
11 |
28.21% |
| Jaya Kumar |
18 |
4.14% |
2 |
5.13% |
| Helge Deller |
15 |
3.45% |
1 |
2.56% |
| Thomas Zimmermann |
15 |
3.45% |
1 |
2.56% |
| Linus Torvalds (pre-git) |
10 |
2.30% |
3 |
7.69% |
| Benjamin Herrenschmidt |
2 |
0.46% |
1 |
2.56% |
| Arnd Bergmann |
2 |
0.46% |
1 |
2.56% |
| Total |
435 |
|
39 |
|
#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);
int fbcon_fb_registered(struct fb_info *info);
void fbcon_fb_unregistered(struct fb_info *info);
void fbcon_fb_unbind(struct fb_info *info);
void fbcon_suspended(struct fb_info *info);
void fbcon_resumed(struct fb_info *info);
int fbcon_mode_deleted(struct fb_info *info,
struct fb_videomode *mode);
void fbcon_delete_modelist(struct list_head *head);
void fbcon_new_modelist(struct fb_info *info);
void fbcon_get_requirement(struct fb_info *info,
struct fb_blit_caps *caps);
void fbcon_fb_blanked(struct fb_info *info, int blank);
int fbcon_modechange_possible(struct fb_info *info,
struct fb_var_screeninfo *var);
void fbcon_update_vcs(struct fb_info *info, bool all);
void fbcon_remap_all(struct fb_info *info);
int fbcon_set_con2fb_map_ioctl(void __user *argp);
int fbcon_get_con2fb_map_ioctl(void __user *argp);
#else
static inline void fb_console_init(void) {}
static inline void fb_console_exit(void) {}
static inline int fbcon_fb_registered(struct fb_info *info) { return 0; }
static inline void fbcon_fb_unregistered(struct fb_info *info) {}
static inline void fbcon_fb_unbind(struct fb_info *info) {}
static inline void fbcon_suspended(struct fb_info *info) {}
static inline void fbcon_resumed(struct fb_info *info) {}
static inline int fbcon_mode_deleted(struct fb_info *info,
struct fb_videomode *mode) { return 0; }
static inline void fbcon_delete_modelist(struct list_head *head) {}
static inline void fbcon_new_modelist(struct fb_info *info) {}
static inline void fbcon_get_requirement(struct fb_info *info,
struct fb_blit_caps *caps) {}
static inline void fbcon_fb_blanked(struct fb_info *info, int blank) {}
static inline int fbcon_modechange_possible(struct fb_info *info,
struct fb_var_screeninfo *var) { return 0; }
static inline void fbcon_update_vcs(struct fb_info *info, bool all) {}
static inline void fbcon_remap_all(struct fb_info *info) {}
static inline int fbcon_set_con2fb_map_ioctl(void __user *argp) { return 0; }
static inline int fbcon_get_con2fb_map_ioctl(void __user *argp) { return 0; }
#endif
#endif /* _LINUX_FBCON_H */