]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
sh: Fix up set_fixmap_nocache() for SH-5.
authorPaul Mundt <lethal@linux-sh.org>
Tue, 12 Feb 2008 07:59:30 +0000 (16:59 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Thu, 14 Feb 2008 05:22:11 +0000 (14:22 +0900)
This needs a PAGE_KERNEL_NOCACHE definition, as provided by pgtable_32.h.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
include/asm-sh/pgtable_64.h

index bfdcb2084fa4b03e72b3f6cb1696f56038239293..f9dd9d3114412d73190c7ba9ce4dabe89985b586 100644 (file)
@@ -187,6 +187,11 @@ static __inline__ void pmd_set(pmd_t *pmdp,pte_t *ptep)
                                 _PAGE_WRITE | _PAGE_EXECUTE)
 #define PAGE_KERNEL    __pgprot(_KERNPG_TABLE)
 
+#define PAGE_KERNEL_NOCACHE \
+                       __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
+                                _PAGE_EXECUTE | _PAGE_ACCESSED | \
+                                _PAGE_DIRTY | _PAGE_SHARED)
+
 /* Make it a device mapping for maximum safety (e.g. for mapping device
    registers into user-space via /dev/map).  */
 #define pgprot_noncached(x) __pgprot(((x).pgprot & ~(_PAGE_CACHABLE)) | _PAGE_DEVICE)