The patch titled
ppc32: fix -Wundef warning for CONFIG_8xx
has been added to the -mm tree. Its filename is
ppc32-fix-wundef-warning-for-config_8xx.patch
Patches currently in -mm which might be from [EMAIL PROTECTED] are
ppc32-fix-wundef-warning-for-config_8xx.patch
ppc64-allow-xmon=off.patch
ppc64-update-xmon-helptext.patch
From: Olaf Hering <[EMAIL PROTECTED]>
linux-2.6.12/arch/ppc/mm/init.c:565:7: warning: "CONFIG_8xx" is not defined
Signed-off-by: Olaf Hering <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
arch/ppc/mm/init.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff -puN arch/ppc/mm/init.c~ppc32-fix-wundef-warning-for-config_8xx
arch/ppc/mm/init.c
--- devel/arch/ppc/mm/init.c~ppc32-fix-wundef-warning-for-config_8xx
2005-08-29 21:06:27.000000000 -0700
+++ devel-akpm/arch/ppc/mm/init.c 2005-08-29 21:06:27.000000000 -0700
@@ -562,7 +562,7 @@ void flush_dcache_icache_page(struct pag
#ifdef CONFIG_BOOKE
__flush_dcache_icache(kmap(page));
kunmap(page);
-#elif CONFIG_8xx
+#elif defined(CONFIG_8xx)
/* On 8xx there is no need to kmap since highmem is not supported */
__flush_dcache_icache(page_address(page));
#else
_
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html