diff options
author | Anatolij Gustschin <agust@denx.de> | 2011-10-29 11:31:19 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-11-03 22:56:21 +0100 |
commit | fc168cc56c88657eb51908890395ad7d9b366793 (patch) | |
tree | fbb9c58e289a939948cdbc83d6a2e6f9c0f80fbd | |
parent | 35b541c835346876dca56ee9bd2b6fd447bf7783 (diff) | |
download | u-boot-fc168cc56c88657eb51908890395ad7d9b366793.tar.gz |
ARM: netspace_v2: fix warnings
Fix compiler warnings when compiling for netspace_v2, netspace_max_v2
and inetspace_v2:
netspace_v2.c: In function 'board_early_init_f':
netspace_v2.c:37: warning: implicit declaration of function 'kw_config_gpio'
netspace_v2.c: In function 'board_init':
netspace_v2.c:86: warning: implicit declaration of function 'kw_sdram_bar'
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Simon Guinot <simon.guinot@sequanux.org>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Acked-by: Marek Vasut <marek.vasut@gmail.com>
-rw-r--r-- | board/LaCie/netspace_v2/netspace_v2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/LaCie/netspace_v2/netspace_v2.c b/board/LaCie/netspace_v2/netspace_v2.c index 3bb83f359e..7c4b15ec47 100644 --- a/board/LaCie/netspace_v2/netspace_v2.c +++ b/board/LaCie/netspace_v2/netspace_v2.c @@ -24,6 +24,7 @@ #include <miiphy.h> #include <netdev.h> #include <command.h> +#include <asm/arch/cpu.h> #include <asm/arch/kirkwood.h> #include <asm/arch/mpp.h> #include <asm/arch/gpio.h> |