aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/xmon/xmon.c
diff options
context:
space:
mode:
authorJimi Xenidis <jimix@pobox.com>2011-09-29 08:05:28 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-11-24 22:11:28 -0500
commit08f6d6abc3eadb88f020075910e6f3a849e56690 (patch)
treebdaef1753af8d0450d98b65c48afa816c75bf540 /arch/powerpc/xmon/xmon.c
parent79873e8df64cc124cdcad56d1d8330b3f45690bc (diff)
powerpc/xmon: Fix #if typo for systems without MSR[RI]
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>
Diffstat (limited to 'arch/powerpc/xmon/xmon.c')
-rw-r--r--arch/powerpc/xmon/xmon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index 95cf53b7149..cb95eea74d3 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -338,7 +338,7 @@ int cpus_are_in_xmon(void)
338 338
339static inline int unrecoverable_excp(struct pt_regs *regs) 339static inline int unrecoverable_excp(struct pt_regs *regs)
340{ 340{
341#if defined(CONFIG_4xx) || defined(CONFIG_BOOK3E) 341#if defined(CONFIG_4xx) || defined(CONFIG_PPC_BOOK3E)
342 /* We have no MSR_RI bit on 4xx or Book3e, so we simply return false */ 342 /* We have no MSR_RI bit on 4xx or Book3e, so we simply return false */
343 return 0; 343 return 0;
344#else 344#else