diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2005-12-16 14:49:25 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-09 15:06:06 +1100 |
commit | e1333803c3a8fb167ba67ffc5540dbb53fa7deb3 (patch) | |
tree | 80cf081d8e3eb40d3ad57575c37e5b9272666b2c /arch | |
parent | 555d97ac87aef08bb55dff6f05e68fe2987d6f6d (diff) | |
download | op-kernel-dev-e1333803c3a8fb167ba67ffc5540dbb53fa7deb3.zip op-kernel-dev-e1333803c3a8fb167ba67ffc5540dbb53fa7deb3.tar.gz |
[PATCH] powerpc: Fix iSeries bug in VMALLOCBASE/VMALLOC_START consolidation
Oops, forgot to compile the VMALLOCBASE/VMALLOC_START patch on
iSeries. VMALLOC_START is defined in pgtable.h whereas previously
VMALLOCBASE was previously defined in page.h. lparmap.c needs to be
updated appropriately.
Booted on iSeries RS64 (now).
Signed-off-by: David Gibson <dwg@au1.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kernel/lparmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/lparmap.c b/arch/powerpc/kernel/lparmap.c index 92d9474..584d1e3 100644 --- a/arch/powerpc/kernel/lparmap.c +++ b/arch/powerpc/kernel/lparmap.c @@ -7,7 +7,7 @@ * 2 of the License, or (at your option) any later version. */ #include <asm/mmu.h> -#include <asm/page.h> +#include <asm/pgtable.h> #include <asm/iseries/lpar_map.h> const struct LparMap __attribute__((__section__(".text"))) xLparMap = { |