1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _ASM_X86_FB_H 3 #define _ASM_X86_FB_H 4 5 struct fb_info; 6 struct file; 7 struct vm_area_struct; 8 9 void fb_pgprotect(struct file *file, struct vm_area_struct *vma, unsigned long off); 10 #define fb_pgprotect fb_pgprotect 11 12 int fb_is_primary_device(struct fb_info *info); 13 #define fb_is_primary_device fb_is_primary_device 14 15 #include <asm-generic/fb.h> 16 17 #endif /* _ASM_X86_FB_H */ 18