]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
powerpc: Fix 8xx build failure
authorKumar Gala <galak@kernel.crashing.org>
Sat, 26 Jul 2008 17:55:09 +0000 (12:55 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Sat, 26 Jul 2008 17:55:09 +0000 (12:55 -0500)
The 'powerpc ioremap_prot' broke 8xx builds:

include2/asm/pgtable-ppc32.h:555: error: '_PAGE_WRITETHRU' undeclared (first use in this function)
include2/asm/pgtable-ppc32.h:555: error: (Each undeclared identifier is reported only once
include2/asm/pgtable-ppc32.h:555: error: for each function it appears in.)

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
include/asm-powerpc/pgtable-ppc32.h

index bdbab72f3ebc91bdaec7e45374914cc1124eea9a..6fe39e327047d16814f345402303efb75e9822b7 100644 (file)
@@ -401,6 +401,9 @@ extern int icache_44x_need_flush;
 #ifndef _PAGE_COHERENT
 #define _PAGE_COHERENT 0
 #endif
+#ifndef _PAGE_WRITETHRU
+#define _PAGE_WRITETHRU        0
+#endif
 #ifndef _PMD_PRESENT_MASK
 #define _PMD_PRESENT_MASK      _PMD_PRESENT
 #endif