From: Heiko Schocher Date: Wed, 21 Jan 2015 07:38:21 +0000 (+0100) Subject: common/board_f: add at91 wdt X-Git-Tag: v2025.01-rc5-pxa1908~13798^2~4 X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=2b8b38eacad9bd8dd0e30f324f2aa2b9d717e97a;p=u-boot.git common/board_f: add at91 wdt call hw_watchdog_init() also if CONFIG_AT91SAM9_WATCHDOG is used. Signed-off-by: Heiko Schocher Reviewed-by: Simon Glass --- diff --git a/common/board_f.c b/common/board_f.c index 79531377a7..6c44dee217 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -111,7 +111,7 @@ static int init_func_watchdog_init(void) { # if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \ defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \ - defined(CONFIG_SH)) + defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG)) hw_watchdog_init(); # endif puts(" Watchdog enabled\n");