summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorHaren Myneni2006-01-11 04:25:25 +0100
committerPaul Mackerras2006-01-11 05:33:55 +0100
commitf6cc82fc0b2b6be9ab25f0bfc285e6358db3597a (patch)
tree2623b1345929ec026a44c597cc7aabecf4e92880 /arch
parentpowerpc: Fix compile error when CONFIG_PROC_VMCORE is not defined (diff)
downloadkernel-qcow2-linux-f6cc82fc0b2b6be9ab25f0bfc285e6358db3597a.tar.gz
kernel-qcow2-linux-f6cc82fc0b2b6be9ab25f0bfc285e6358db3597a.tar.xz
kernel-qcow2-linux-f6cc82fc0b2b6be9ab25f0bfc285e6358db3597a.zip
[PATCH] powerpc: fix for compile problem in kdump code when SMP disabled
This patch fixes the compilation error (shown below) when CONFIG_SMP=n. arch/powerpc/kernel/crash.c: In function `crash_kexec_prepare_cpus': arch/powerpc/kernel/crash.c:236: error: implicit declaration of function `smp_release_cpus' Signed-off-by: Haren Myneni <haren@us.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/kernel/crash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/crash.c b/arch/powerpc/kernel/crash.c
index 4681155121ef..5f248e3fdf82 100644
--- a/arch/powerpc/kernel/crash.c
+++ b/arch/powerpc/kernel/crash.c
@@ -18,7 +18,6 @@
#include <linux/kexec.h>
#include <linux/bootmem.h>
#include <linux/crash_dump.h>
-#include <linux/irq.h>
#include <linux/delay.h>
#include <linux/elf.h>
#include <linux/elfcore.h>
@@ -30,6 +29,7 @@
#include <asm/kdump.h>
#include <asm/lmb.h>
#include <asm/firmware.h>
+#include <asm/smp.h>
#ifdef DEBUG
#include <asm/udbg.h>