diff options
author | Jimi Xenidis <jimix@pobox.com> | 2011-09-29 08:05:28 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-11-24 22:11:28 -0500 |
commit | 08f6d6abc3eadb88f020075910e6f3a849e56690 (patch) | |
tree | bdaef1753af8d0450d98b65c48afa816c75bf540 /arch/powerpc/xmon | |
parent | 79873e8df64cc124cdcad56d1d8330b3f45690bc (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')
-rw-r--r-- | arch/powerpc/xmon/xmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index 95cf53b71499..cb95eea74d3d 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 | ||
339 | static inline int unrecoverable_excp(struct pt_regs *regs) | 339 | static 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 |