xref: /kernel/linux/linux-6.6/arch/x86/include/asm/fb.h (revision 62306a36)
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _ASM_X86_FB_H
3#define _ASM_X86_FB_H
4
5struct fb_info;
6struct file;
7struct vm_area_struct;
8
9void fb_pgprotect(struct file *file, struct vm_area_struct *vma, unsigned long off);
10#define fb_pgprotect fb_pgprotect
11
12int 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