summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms
diff options
context:
space:
mode:
authorAlexey Dobriyan2008-11-02 11:21:57 +0100
committerPaul Mackerras2008-11-05 09:59:08 +0100
commit9c8b4aff18b59cd0c2d9a77b3df1f9d7077df90c (patch)
tree01ba7105f2f3b0891cf7eb4ef54e01efede14ca6 /arch/powerpc/platforms
parentpowerpc/ps3: Fix compile error in ps3-lpm.c (diff)
downloadkernel-qcow2-linux-9c8b4aff18b59cd0c2d9a77b3df1f9d7077df90c.tar.gz
kernel-qcow2-linux-9c8b4aff18b59cd0c2d9a77b3df1f9d7077df90c.tar.xz
kernel-qcow2-linux-9c8b4aff18b59cd0c2d9a77b3df1f9d7077df90c.zip
powerpc/cell: Fix compile error in ras.c
This fixes this error on Cell when CONFIG_KEXEC = n: arch/powerpc/platforms/cell/ras.c:299: error: implicit declaration of function 'crash_shutdown_register' We have to include <asm/kexec.h> because it contains the dummy definition of crash_shutdown_register that is used when CONFIG_KEXEC=n, but <linux/kexec.h> doesn't include <asm/kexec.h> in that case. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r--arch/powerpc/platforms/cell/ras.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/cell/ras.c b/arch/powerpc/platforms/cell/ras.c
index fdf088f2430e..7b4cefa2199b 100644
--- a/arch/powerpc/platforms/cell/ras.c
+++ b/arch/powerpc/platforms/cell/ras.c
@@ -16,6 +16,7 @@
#include <linux/kexec.h>
#include <linux/crash_dump.h>
+#include <asm/kexec.h>
#include <asm/reg.h>
#include <asm/io.h>
#include <asm/prom.h>