mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
477346ff74
For some reason the 64-bit tree was doing this differently and I can't see why it would need to. This correct behaviour when you have two GPUs plugged in and 32-bit put the console in one place and 64-bit in another. Signed-off-by: Dave Airlie <airlied@redhat.com> LKML-Reference: <1262847894-27498-1-git-send-email-airlied@gmail.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
18 lines
376 B
C
18 lines
376 B
C
#ifndef _ASM_X86_FB_H
|
|
#define _ASM_X86_FB_H
|
|
|
|
#include <linux/fb.h>
|
|
#include <linux/fs.h>
|
|
#include <asm/page.h>
|
|
|
|
static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
|
|
unsigned long off)
|
|
{
|
|
if (boot_cpu_data.x86 > 3)
|
|
pgprot_val(vma->vm_page_prot) |= _PAGE_PCD;
|
|
}
|
|
|
|
extern int fb_is_primary_device(struct fb_info *info);
|
|
|
|
#endif /* _ASM_X86_FB_H */
|