Release 4.12 include/linux/platform_data/video-clcd-versatile.h
#ifndef PLAT_CLCD_H
#define PLAT_CLCD_H
#ifdef CONFIG_PLAT_VERSATILE_CLCD
struct clcd_panel *versatile_clcd_get_panel(const char *);
int versatile_clcd_setup_dma(struct clcd_fb *, unsigned long);
int versatile_clcd_mmap_dma(struct clcd_fb *, struct vm_area_struct *);
void versatile_clcd_remove_dma(struct clcd_fb *);
#else
static inline struct clcd_panel *versatile_clcd_get_panel(const char *s)
{
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
static inline int versatile_clcd_setup_dma(struct clcd_fb *fb, unsigned long framesize)
{
return -ENODEV;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
static inline int versatile_clcd_mmap_dma(struct clcd_fb *fb, struct vm_area_struct *vm)
{
return -ENODEV;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
static inline void versatile_clcd_remove_dma(struct clcd_fb *fb)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Arnd Bergmann | 76 | 60.80% | 1 | 50.00% |
Russell King | 49 | 39.20% | 1 | 50.00% |
Total | 125 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.