diff options
author | Paul Mundt | 2010-03-10 08:29:48 +0100 |
---|---|---|
committer | Paul Mundt | 2010-03-10 08:29:48 +0100 |
commit | 089b43f9737f2e51c6ce354749f5a9f3f093601c (patch) | |
tree | e21a5c03b14dbb7f84ff420493c70215602e011f /arch/sh/include/asm/mmu.h | |
parent | serial: sh-sci: Fix build failure for non-sh architectures. (diff) | |
download | kernel-qcow2-linux-089b43f9737f2e51c6ce354749f5a9f3f093601c.tar.gz kernel-qcow2-linux-089b43f9737f2e51c6ce354749f5a9f3f093601c.tar.xz kernel-qcow2-linux-089b43f9737f2e51c6ce354749f5a9f3f093601c.zip |
sh: Fix up NUMA build for 29-bit.
pmb_bolt_mapping() is undefined on 29-bit builds, so provide a stub.
This fixes up the NUMA build on platforms lacking PMB support.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/mmu.h')
-rw-r--r-- | arch/sh/include/asm/mmu.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sh/include/asm/mmu.h b/arch/sh/include/asm/mmu.h index 19fe84550b49..56e4418c19b9 100644 --- a/arch/sh/include/asm/mmu.h +++ b/arch/sh/include/asm/mmu.h @@ -66,6 +66,13 @@ int pmb_unmap(void __iomem *addr); #else +static inline int +pmb_bolt_mapping(unsigned long virt, phys_addr_t phys, + unsigned long size, pgprot_t prot) +{ + return -EINVAL; +} + static inline void __iomem * pmb_remap_caller(phys_addr_t phys, unsigned long size, pgprot_t prot, void *caller) |