Commit eeaab663 authored by Scott Wood's avatar Scott Wood

powerpc/book3e/kdump: Enable crash_kexec_wait_realmode

While book3e doesn't have "real mode", we still want to wait for
all the non-crash cpus to complete their shutdown.
Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
parent 1cb6e064
...@@ -221,8 +221,8 @@ void crash_kexec_secondary(struct pt_regs *regs) ...@@ -221,8 +221,8 @@ void crash_kexec_secondary(struct pt_regs *regs)
#endif /* CONFIG_SMP */ #endif /* CONFIG_SMP */
/* wait for all the CPUs to hit real mode but timeout if they don't come in */ /* wait for all the CPUs to hit real mode but timeout if they don't come in */
#if defined(CONFIG_SMP) && defined(CONFIG_PPC_STD_MMU_64) #if defined(CONFIG_SMP) && defined(CONFIG_PPC64)
static void crash_kexec_wait_realmode(int cpu) static void __maybe_unused crash_kexec_wait_realmode(int cpu)
{ {
unsigned int msecs; unsigned int msecs;
int i; int i;
...@@ -244,7 +244,7 @@ static void crash_kexec_wait_realmode(int cpu) ...@@ -244,7 +244,7 @@ static void crash_kexec_wait_realmode(int cpu)
} }
#else #else
static inline void crash_kexec_wait_realmode(int cpu) {} static inline void crash_kexec_wait_realmode(int cpu) {}
#endif /* CONFIG_SMP && CONFIG_PPC_STD_MMU_64 */ #endif /* CONFIG_SMP && CONFIG_PPC64 */
/* /*
* Register a function to be called on shutdown. Only use this if you * Register a function to be called on shutdown. Only use this if you
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment