aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sh/pgtable.h
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2007-11-07 11:40:24 +0900
committerPaul Mundt <lethal@linux-sh.org>2007-11-07 11:40:24 +0900
commitac11584ccbd14aadcc6613598f3bac4589ea3a11 (patch)
treeafca7f4e77c53aa0809c0ab35d4fb1bf1e885a30 /include/asm-sh/pgtable.h
parentsh: hs7751rvoip: Kill off dead IPR IRQ mappings. (diff)
downloadlinux-dev-ac11584ccbd14aadcc6613598f3bac4589ea3a11.tar.xz
linux-dev-ac11584ccbd14aadcc6613598f3bac4589ea3a11.zip
sh: Fix up PAGE_KERNEL_PCC() for nommu.
PAGE_KERNEL_PCC() takes two arguments, which weren't reflected in the nommu case. Fix it up. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh/pgtable.h')
-rw-r--r--include/asm-sh/pgtable.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-sh/pgtable.h b/include/asm-sh/pgtable.h
index 0b1d7c665659..8f1e8be8d15d 100644
--- a/include/asm-sh/pgtable.h
+++ b/include/asm-sh/pgtable.h
@@ -322,7 +322,9 @@ extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
#define PAGE_KERNEL __pgprot(0)
#define PAGE_KERNEL_NOCACHE __pgprot(0)
#define PAGE_KERNEL_RO __pgprot(0)
-#define PAGE_KERNEL_PCC __pgprot(0)
+
+#define PAGE_KERNEL_PCC(slot, type) \
+ __pgprot(0)
#endif
#endif /* __ASSEMBLY__ */