Contributors: 10
	  
        
          | Author | 
          Tokens | 
          Token Proportion | 
          Commits | 
          Commit Proportion | 
        
	  
	  
        
        
          | Daniel Vetter | 
          185 | 
          46.37% | 
          10 | 
          27.78% | 
        
        
          | James Simmons | 
          86 | 
          21.55% | 
          5 | 
          13.89% | 
        
        
          | Richard Henderson | 
          36 | 
          9.02% | 
          1 | 
          2.78% | 
        
        
          | Ezequiel García | 
          24 | 
          6.02% | 
          1 | 
          2.78% | 
        
        
          | Antonino A. Daplas | 
          23 | 
          5.76% | 
          12 | 
          33.33% | 
        
        
          | Jaya Kumar | 
          18 | 
          4.51% | 
          2 | 
          5.56% | 
        
        
          | Helge Deller | 
          15 | 
          3.76% | 
          1 | 
          2.78% | 
        
        
          | Linus Torvalds (pre-git) | 
          8 | 
          2.01% | 
          2 | 
          5.56% | 
        
        
          | Arnd Bergmann | 
          2 | 
          0.50% | 
          1 | 
          2.78% | 
        
        
          | Benjamin Herrenschmidt | 
          2 | 
          0.50% | 
          1 | 
          2.78% | 
        
	  
	  
        
          | Total | 
          399 | 
           | 
          36 | 
           | 
	    
	  
    
 
#ifndef _LINUX_FBCON_H
#define _LINUX_FBCON_H
#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_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_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 */