diff options
author | Paul Mackerras <paulus@samba.org> | 2005-11-14 17:32:50 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-14 17:32:50 +1100 |
commit | 493f25ef4087395891c99fcfe2c72e62e293e89f (patch) | |
tree | bdb2339dba841e1c459292769e1cafd9698ae1a7 /include/asm-powerpc/page_32.h | |
parent | 5be396b00ca0f2f769c55cf69bbd7c77451c925e (diff) | |
download | blackbird-obmc-linux-493f25ef4087395891c99fcfe2c72e62e293e89f.tar.gz blackbird-obmc-linux-493f25ef4087395891c99fcfe2c72e62e293e89f.zip |
powerpc: Fix 32-bit compile: PPC_MEMSTART was undeclared
This defines PPC_MEMSTART as 0 because it is still used in a couple
of places in the 32-bit code.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/page_32.h')
-rw-r--r-- | include/asm-powerpc/page_32.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asm-powerpc/page_32.h b/include/asm-powerpc/page_32.h index 35221300a2ce..7259cfd85da9 100644 --- a/include/asm-powerpc/page_32.h +++ b/include/asm-powerpc/page_32.h @@ -3,6 +3,8 @@ #define VM_DATA_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS32 +#define PPC_MEMSTART 0 + #ifndef __ASSEMBLY__ /* * The basic type of a PTE - 64 bits for those CPUs with > 32 bit |