Skip to content
Snippets Groups Projects
Commit 08f6d6ab authored by Jimi Xenidis's avatar Jimi Xenidis Committed by Benjamin Herrenschmidt
Browse files

powerpc/xmon: Fix #if typo for systems without MSR[RI]


Sorry, there was a typo in the #if

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

Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 79873e8d
No related branches found
No related tags found
No related merge requests found
...@@ -338,7 +338,7 @@ int cpus_are_in_xmon(void) ...@@ -338,7 +338,7 @@ int cpus_are_in_xmon(void)
static inline int unrecoverable_excp(struct pt_regs *regs) 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 */ /* We have no MSR_RI bit on 4xx or Book3e, so we simply return false */
return 0; return 0;
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment