diff options
Diffstat (limited to 'include/asm-generic')
-rw-r--r-- | include/asm-generic/fb.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/asm-generic/fb.h b/include/asm-generic/fb.h index 6ccabb400aa6..4788c1e1c6bc 100644 --- a/include/asm-generic/fb.h +++ b/include/asm-generic/fb.h @@ -10,8 +10,9 @@ #include <linux/io.h> #include <linux/mm_types.h> #include <linux/pgtable.h> +#include <linux/types.h> -struct fb_info; +struct device; #ifndef pgprot_framebuffer #define pgprot_framebuffer pgprot_framebuffer @@ -23,11 +24,11 @@ static inline pgprot_t pgprot_framebuffer(pgprot_t prot, } #endif -#ifndef fb_is_primary_device -#define fb_is_primary_device fb_is_primary_device -static inline int fb_is_primary_device(struct fb_info *info) +#ifndef video_is_primary_device +#define video_is_primary_device video_is_primary_device +static inline bool video_is_primary_device(struct device *dev) { - return 0; + return false; } #endif |