License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / arch / x86 / include / asm / fb.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1965aae3
PA
2#ifndef _ASM_X86_FB_H
3#define _ASM_X86_FB_H
106619c4
TG
4
5#include <linux/fb.h>
6#include <linux/fs.h>
7#include <asm/page.h>
8
9static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
10 unsigned long off)
11{
c27ce0af
JG
12 unsigned long prot;
13
14 prot = pgprot_val(vma->vm_page_prot) & ~_PAGE_CACHE_MASK;
106619c4 15 if (boot_cpu_data.x86 > 3)
c27ce0af
JG
16 pgprot_val(vma->vm_page_prot) =
17 prot | cachemode2protval(_PAGE_CACHE_MODE_UC_MINUS);
106619c4
TG
18}
19
106619c4 20extern int fb_is_primary_device(struct fb_info *info);
106619c4 21
1965aae3 22#endif /* _ASM_X86_FB_H */