]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
powerpc/cell: Fix compile error in ras.c
authorAlexey Dobriyan <adobriyan@gmail.com>
Sun, 2 Nov 2008 10:21:57 +0000 (10:21 +0000)
committerPaul Mackerras <paulus@samba.org>
Wed, 5 Nov 2008 08:59:08 +0000 (19:59 +1100)
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>
arch/powerpc/platforms/cell/ras.c

index fdf088f2430e8ad4feb9d03dee0e16366e7d8fbc..7b4cefa2199b773b74fc274db1c3483145d2bbab 100644 (file)
@@ -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>