blob: 09ccf182af4dc3b729d272c4ef1ce154c820c8fa [file] [log] [blame]
Russell King420c34e2011-01-18 20:08:06 +00001#ifndef PLAT_CLCD_H
2#define PLAT_CLCD_H
3
Arnd Bergmannec4c4d82014-07-15 09:58:06 +02004#ifdef CONFIG_PLAT_VERSATILE_CLCD
Russell King420c34e2011-01-18 20:08:06 +00005struct clcd_panel *versatile_clcd_get_panel(const char *);
6int versatile_clcd_setup_dma(struct clcd_fb *, unsigned long);
7int versatile_clcd_mmap_dma(struct clcd_fb *, struct vm_area_struct *);
8void versatile_clcd_remove_dma(struct clcd_fb *);
Arnd Bergmannec4c4d82014-07-15 09:58:06 +02009#else
10static inline struct clcd_panel *versatile_clcd_get_panel(const char *s)
11{
12 return NULL;
13}
14static inline int versatile_clcd_setup_dma(struct clcd_fb *fb, unsigned long framesize)
15{
16 return -ENODEV;
17}
18static inline int versatile_clcd_mmap_dma(struct clcd_fb *fb, struct vm_area_struct *vm)
19{
20 return -ENODEV;
21}
22static inline void versatile_clcd_remove_dma(struct clcd_fb *fb)
23{
24}
25#endif
Russell King420c34e2011-01-18 20:08:06 +000026
27#endif