diff options
| author | Sonic Zhang <sonic.zhang@analog.com> | 2013-12-09 12:56:27 +0800 | 
|---|---|---|
| committer | Sonic Zhang <sonic.zhang@analog.com> | 2013-12-16 11:38:33 +0800 | 
| commit | 31d5d4e056622ae655b8f37f09d643d2a4affbcb (patch) | |
| tree | a9df75ccfc75da1665b141411585dcc203f7e4b1 | |
| parent | 6e6b221c4375399625a956ecb8814d176871ef19 (diff) | |
| download | olio-uboot-2014.01-31d5d4e056622ae655b8f37f09d643d2a4affbcb.tar.xz olio-uboot-2014.01-31d5d4e056622ae655b8f37f09d643d2a4affbcb.zip | |
blackfin: fixing warning by including proper headers
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
| -rw-r--r-- | arch/blackfin/lib/board.c | 1 | ||||
| -rw-r--r-- | arch/blackfin/lib/clocks.c | 5 | ||||
| -rw-r--r-- | board/bf609-ezkit/bf609-ezkit.c | 1 | 
3 files changed, 6 insertions, 1 deletions
| diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c index 17d1f468d..392d72d23 100644 --- a/arch/blackfin/lib/board.c +++ b/arch/blackfin/lib/board.c @@ -19,6 +19,7 @@  #include <net.h>  #include <status_led.h>  #include <version.h> +#include <watchdog.h>  #include <asm/cplb.h>  #include <asm/mach-common/bits/mpu.h> diff --git a/arch/blackfin/lib/clocks.c b/arch/blackfin/lib/clocks.c index 97795e11a..7ed56a727 100644 --- a/arch/blackfin/lib/clocks.c +++ b/arch/blackfin/lib/clocks.c @@ -36,7 +36,10 @@ u_long get_vco(void)  u_long get_cclk(void)  {  	static u_long cached_cclk_pll_div, cached_cclk; -	u_long div, csel, ssel; +	u_long div, csel; +#ifndef CGU_DIV +	u_long ssel; +#endif  	if (pll_is_bypassed())  		return CONFIG_CLKIN_HZ; diff --git a/board/bf609-ezkit/bf609-ezkit.c b/board/bf609-ezkit/bf609-ezkit.c index 0388226db..cfc64fe51 100644 --- a/board/bf609-ezkit/bf609-ezkit.c +++ b/board/bf609-ezkit/bf609-ezkit.c @@ -10,6 +10,7 @@  #include <netdev.h>  #include <asm/blackfin.h>  #include <asm/io.h> +#include <asm/sdh.h>  #include <asm/portmux.h>  #include "soft_switch.h" |