From: Anatolij Gustschin Date: Mon, 13 Jun 2016 12:24:23 +0000 (+0200) Subject: board_f: init designware watchdog if CONFIG_DESIGNWARE_WATCHDOG=y X-Git-Tag: v2016.09-rc1~90 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=46d7a3b3d37aed4381765fd6985d06031d0e2a52;p=u-boot board_f: init designware watchdog if CONFIG_DESIGNWARE_WATCHDOG=y The designware watchdog init is skipped even if CONFIG_DESIGNWARE_WATCHDOG is enabled. Fix it. Signed-off-by: Anatolij Gustschin --- diff --git a/common/board_f.c b/common/board_f.c index d405b5b407..05f60269eb 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -117,6 +117,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_AT91SAM9_WATCHDOG) || \ + defined(CONFIG_DESIGNWARE_WATCHDOG) || \ defined(CONFIG_IMX_WATCHDOG)) hw_watchdog_init(); # endif