Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac11584c authored by Paul Mundt's avatar Paul Mundt
Browse files

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: default avatarPaul Mundt <lethal@linux-sh.org>
parent c7a0e13d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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__ */