]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/xmon: Fix #if typo for systems without MSR[RI]
authorJimi Xenidis <jimix@pobox.com>
Thu, 29 Sep 2011 12:05:28 +0000 (12:05 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Fri, 25 Nov 2011 03:11:28 +0000 (14:11 +1100)
Sorry, there was a typo in the #if

signed-off-by: Jimi Xenidis <jimix@pobox.com>

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/xmon/xmon.c

index 95cf53b71499e4d3c02e697c5ebc98789b54fc40..cb95eea74d3d6f382e638f55f4865bb90a2ee0b3 100644 (file)
@@ -338,7 +338,7 @@ int cpus_are_in_xmon(void)
 
 static inline int unrecoverable_excp(struct pt_regs *regs)
 {
-#if defined(CONFIG_4xx) || defined(CONFIG_BOOK3E)
+#if defined(CONFIG_4xx) || defined(CONFIG_PPC_BOOK3E)
        /* We have no MSR_RI bit on 4xx or Book3e, so we simply return false */
        return 0;
 #else