Release 4.7 drivers/video/fbdev/wmt_ge_rops.h
  
  
#ifdef CONFIG_FB_WMT_GE_ROPS
extern void wmt_ge_fillrect(struct fb_info *info,
			    const struct fb_fillrect *rect);
extern void wmt_ge_copyarea(struct fb_info *info,
			    const struct fb_copyarea *area);
extern int wmt_ge_sync(struct fb_info *info);
#else
static inline int wmt_ge_sync(struct fb_info *p)
{
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| tony prisk | tony prisk | 15 | 100.00% | 1 | 100.00% | 
 | Total | 15 | 100.00% | 1 | 100.00% | 
static inline void wmt_ge_fillrect(struct fb_info *p,
				    const struct fb_fillrect *rect)
{
	sys_fillrect(p, rect);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| tony prisk | tony prisk | 25 | 100.00% | 1 | 100.00% | 
 | Total | 25 | 100.00% | 1 | 100.00% | 
static inline void wmt_ge_copyarea(struct fb_info *p,
				     const struct fb_copyarea *area)
{
	sys_copyarea(p, area);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| tony prisk | tony prisk | 25 | 100.00% | 1 | 100.00% | 
 | Total | 25 | 100.00% | 1 | 100.00% | 
#endif
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| tony prisk | tony prisk | 72 | 63.16% | 1 | 50.00% | 
| alexey charkov | alexey charkov | 42 | 36.84% | 1 | 50.00% | 
 | Total | 114 | 100.00% | 2 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.