diff options
author | Ian Campbell <ijc@hellion.org.uk> | 2012-04-29 14:40:42 +0100 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2012-05-08 18:43:25 +0000 |
commit | a7ac56de8316c0eb1111824c9add045cac2bd7a2 (patch) | |
tree | 292e9eecdda52fb05ea90fe58414a3f1546bb8d7 /arch/arm/mach-kirkwood | |
parent | d48b97b403d23f6df0b990cee652bdf9a52337a3 (diff) | |
download | talos-obmc-linux-a7ac56de8316c0eb1111824c9add045cac2bd7a2.tar.gz talos-obmc-linux-a7ac56de8316c0eb1111824c9add045cac2bd7a2.zip |
ARM: kirkwood: add missing kexec.h include
Fixes the following build error when CONFIG_KEXEC is enabled:
CC arch/arm/mach-kirkwood/board-dt.o
arch/arm/mach-kirkwood/board-dt.c: In function 'kirkwood_dt_init':
arch/arm/mach-kirkwood/board-dt.c:52:2: error: 'kexec_reinit' undeclared (first use in this function)
arch/arm/mach-kirkwood/board-dt.c:52:2: note: each undeclared identifier is reported only once for each function it appears in
Signed-off-by: Ian Campbell <ijc@hellion.org.uk>
[v4, rebase onto recent Linus for repost]
[v3, speak actual English in the commit message, thanks Sergei Shtylyov]
[v2, using linux/kexec.h not asm/kexec.h]
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-kirkwood')
-rw-r--r-- | arch/arm/mach-kirkwood/board-dt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-kirkwood/board-dt.c b/arch/arm/mach-kirkwood/board-dt.c index 1c672d9e6656..f7fe1b9f3170 100644 --- a/arch/arm/mach-kirkwood/board-dt.c +++ b/arch/arm/mach-kirkwood/board-dt.c @@ -14,6 +14,7 @@ #include <linux/init.h> #include <linux/of.h> #include <linux/of_platform.h> +#include <linux/kexec.h> #include <asm/mach/arch.h> #include <asm/mach/map.h> #include <mach/bridge-regs.h> |