[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20110414222719.GA16256@digium.com>
Date: Thu, 14 Apr 2011 17:27:19 -0500
From: Shaun Ruffell <sruffell@...ium.com>
To: Paul Gortmaker <paul.gortmaker@...driver.com>,
Benjamin Herrenschmidt <benh@...nel.crashing.org>
Cc: linux-kernel@...r.kernel.org, linuxppc-dev@...ts.ozlabs.org
Subject: [PATCH] powerpc: Define 'crash_kexec_wait_realmode' for Non-SMP
systems.
This fixes a regression from b987812b3fcaf70fdf0037589e5d2f5f2453e6ce
"powerpc/kexec: Fix mismatched ifdefs for PPC64/SMP" which resulted in
arch/powerpc/kernel/crash.c: In function ‘default_machine_crash_shutdown’:
arch/powerpc/kernel/crash.c:349: error: implicit declaration of function
‘crash_kexec_wait_realmode’
message on when compiling on Blue&White G3 and CONFIG_SMP is not defined.
Signed-off-by: Shaun Ruffell <sruffell@...ium.com>
---
arch/powerpc/kernel/crash.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
index 3d3d416..5e6e37f 100644
--- a/arch/powerpc/kernel/crash.c
+++ b/arch/powerpc/kernel/crash.c
@@ -255,6 +255,9 @@ void crash_kexec_secondary(struct pt_regs *regs)
{
cpus_in_sr = CPU_MASK_NONE;
}
+
+static inline void crash_kexec_wait_realmode(int cpu) {}
+
#endif
/*
--
1.7.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists