diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2008-07-26 13:57:30 -0400 |
|---|---|---|
| committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-07-28 02:30:48 -0400 |
| commit | ff8dc7698c904f2a911e89b3d54e7c4a74f5575d (patch) | |
| tree | d305d3030df749c6860da03c8d996496dde69066 | |
| parent | b9fa49a9a908407d9366b0e1e7222aee81a2df5b (diff) | |
powerpc: Fix 8xx build failure
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>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
| -rw-r--r-- | include/asm-powerpc/pgtable-ppc32.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-powerpc/pgtable-ppc32.h b/include/asm-powerpc/pgtable-ppc32.h index bdbab72f3ebc..6fe39e327047 100644 --- a/include/asm-powerpc/pgtable-ppc32.h +++ b/include/asm-powerpc/pgtable-ppc32.h | |||
| @@ -401,6 +401,9 @@ extern int icache_44x_need_flush; | |||
| 401 | #ifndef _PAGE_COHERENT | 401 | #ifndef _PAGE_COHERENT |
| 402 | #define _PAGE_COHERENT 0 | 402 | #define _PAGE_COHERENT 0 |
| 403 | #endif | 403 | #endif |
| 404 | #ifndef _PAGE_WRITETHRU | ||
| 405 | #define _PAGE_WRITETHRU 0 | ||
| 406 | #endif | ||
| 404 | #ifndef _PMD_PRESENT_MASK | 407 | #ifndef _PMD_PRESENT_MASK |
| 405 | #define _PMD_PRESENT_MASK _PMD_PRESENT | 408 | #define _PMD_PRESENT_MASK _PMD_PRESENT |
| 406 | #endif | 409 | #endif |
