Release 4.14 drivers/video/fbdev/wmt_ge_rops.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 | 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 | 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 | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Tony Prisk | 72 | 62.61% | 1 | 33.33% |
Alexey Charkov | 42 | 36.52% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 0.87% | 1 | 33.33% |
Total | 115 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.