diff options
Diffstat (limited to 'include/asm-x86_64/fb.h')
-rw-r--r-- | include/asm-x86_64/fb.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/asm-x86_64/fb.h b/include/asm-x86_64/fb.h index d30073c7558..60548e651d1 100644 --- a/include/asm-x86_64/fb.h +++ b/include/asm-x86_64/fb.h @@ -1,6 +1,6 @@ #ifndef _ASM_FB_H_ #define _ASM_FB_H_ - +#include <linux/fb.h> #include <linux/fs.h> #include <asm/page.h> @@ -11,4 +11,9 @@ static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma, pgprot_val(vma->vm_page_prot) |= _PAGE_PCD; } +static inline int fb_is_primary_device(struct fb_info *info) +{ + return 0; +} + #endif /* _ASM_FB_H_ */ |