diff options
author | Juergen Gross <jgross@suse.com> | 2014-11-03 08:01:50 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-11-16 05:04:25 -0500 |
commit | 5006e45a6bc293b490638210d1a88ac391d2eb92 (patch) | |
tree | 219440b54221d2a673d468d79c352e040c3ec9f0 | |
parent | 2d85ebf8e12e14694d6f9a4f34359c19f0738ace (diff) |
x86: Use new cache mode type in drivers/video/fbdev/vermilion
Instead of directly using the cache mode bits in the pte switch to
using the cache mode type.
Based-on-patch-by: Stefan Bader <stefan.bader@canonical.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Cc: stefan.bader@canonical.com
Cc: xen-devel@lists.xensource.com
Cc: konrad.wilk@oracle.com
Cc: ville.syrjala@linux.intel.com
Cc: david.vrabel@citrix.com
Cc: jbeulich@suse.com
Cc: toshi.kani@hp.com
Cc: plagnioj@jcrosoft.com
Cc: tomi.valkeinen@ti.com
Cc: bhelgaas@google.com
Link: http://lkml.kernel.org/r/1415019724-4317-5-git-send-email-jgross@suse.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/video/fbdev/vermilion/vermilion.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/video/fbdev/vermilion/vermilion.c b/drivers/video/fbdev/vermilion/vermilion.c index 5f930aeccf1f..6b70d7f62b2f 100644 --- a/drivers/video/fbdev/vermilion/vermilion.c +++ b/drivers/video/fbdev/vermilion/vermilion.c | |||
@@ -1003,13 +1003,15 @@ static int vmlfb_mmap(struct fb_info *info, struct vm_area_struct *vma) | |||
1003 | struct vml_info *vinfo = container_of(info, struct vml_info, info); | 1003 | struct vml_info *vinfo = container_of(info, struct vml_info, info); |
1004 | unsigned long offset = vma->vm_pgoff << PAGE_SHIFT; | 1004 | unsigned long offset = vma->vm_pgoff << PAGE_SHIFT; |
1005 | int ret; | 1005 | int ret; |
1006 | unsigned long prot; | ||
1006 | 1007 | ||
1007 | ret = vmlfb_vram_offset(vinfo, offset); | 1008 | ret = vmlfb_vram_offset(vinfo, offset); |
1008 | if (ret) | 1009 | if (ret) |
1009 | return -EINVAL; | 1010 | return -EINVAL; |
1010 | 1011 | ||
1011 | pgprot_val(vma->vm_page_prot) |= _PAGE_PCD; | 1012 | prot = pgprot_val(vma->vm_page_prot) & ~_PAGE_CACHE_MASK; |
1012 | pgprot_val(vma->vm_page_prot) &= ~_PAGE_PWT; | 1013 | pgprot_val(vma->vm_page_prot) = |
1014 | prot | cachemode2protval(_PAGE_CACHE_MODE_UC_MINUS); | ||
1013 | 1015 | ||
1014 | return vm_iomap_memory(vma, vinfo->vram_start, | 1016 | return vm_iomap_memory(vma, vinfo->vram_start, |
1015 | vinfo->vram_contig_size); | 1017 | vinfo->vram_contig_size); |