diff options
author | Vasili Galka <vvv444@gmail.com> | 2014-06-30 12:59:56 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-07 19:47:09 -0400 |
commit | 0519e80d834f18fa92c24ac42937271ea97d7347 (patch) | |
tree | 1f8c8d58dff01562ea161f8c89ef2fd7690480a0 | |
parent | fa28179d2ce89d726b80293c8f8dc78bf0c94d30 (diff) | |
download | talos-obmc-uboot-0519e80d834f18fa92c24ac42937271ea97d7347.tar.gz talos-obmc-uboot-0519e80d834f18fa92c24ac42937271ea97d7347.zip |
blackfin: Fix warning about undefined function
get_sclk() was not defined in bfin_wdt.c, include the corresponding header.
Cc: Sonic Zhang <sonic.adi@gmail.com>
Signed-off-by: Vasili Galka <vvv444@gmail.com>
-rw-r--r-- | drivers/watchdog/bfin_wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/bfin_wdt.c b/drivers/watchdog/bfin_wdt.c index 7a6756b2e5..6a8db59fdf 100644 --- a/drivers/watchdog/bfin_wdt.c +++ b/drivers/watchdog/bfin_wdt.c @@ -9,6 +9,7 @@ #include <common.h> #include <watchdog.h> #include <asm/blackfin.h> +#include <asm/clock.h> #include <asm/mach-common/bits/watchdog.h> void hw_watchdog_reset(void) |