diff options
author | Simon Kagstrom <[simon.kagstrom@netinsight.net]> | 2009-10-01 19:41:50 +0530 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2009-10-04 12:25:03 -0500 |
commit | dca0d1ee737918356a90f46bdc5505b107960031 (patch) | |
tree | c9ae63dfad2e044181c2a3208f9ac89afd843eac | |
parent | 2f3b6ef2fe4609c90976ba6aeffd836c6ccb2703 (diff) | |
download | u-boot-imx-dca0d1ee737918356a90f46bdc5505b107960031.zip u-boot-imx-dca0d1ee737918356a90f46bdc5505b107960031.tar.gz u-boot-imx-dca0d1ee737918356a90f46bdc5505b107960031.tar.bz2 |
arm: Correct build with CONFIG_SYS_HUSH_PARSER set
FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that.
Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
-rw-r--r-- | cpu/arm926ejs/kirkwood/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/arm926ejs/kirkwood/cpu.c b/cpu/arm926ejs/kirkwood/cpu.c index bab5faf..6fc3902 100644 --- a/cpu/arm926ejs/kirkwood/cpu.c +++ b/cpu/arm926ejs/kirkwood/cpu.c @@ -27,6 +27,7 @@ #include <asm/cache.h> #include <u-boot/md5.h> #include <asm/arch/kirkwood.h> +#include <hush.h> #define BUFLEN 16 |