On Sun, Feb 19, 2017 at 11:24:41PM +0100, Lukasz Majewski wrote: > Now it is possible to specify in the config file the time after which > watchdog will trigger. > > The flag itself has been reused from designware watchdog code > (./drivers/watchdog/designware_wdt.c). > > Signed-off-by: Lukasz Majewski <[email protected]> > --- > drivers/watchdog/omap_wdt.c | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) > > diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c > index 7b1f429..5a2126b 100644 > --- a/drivers/watchdog/omap_wdt.c > +++ b/drivers/watchdog/omap_wdt.c > @@ -45,7 +45,9 @@ > #include <asm/arch/cpu.h> > > /* Hardware timeout in seconds */ > -#define WDT_HW_TIMEOUT 60 > +#ifndef CONFIG_HW_WATCHDOG_TIMEOUT_MS > +#define CONFIG_HW_WATCHDOG_TIMEOUT_MS 60000 > +#endif
Please migrate CONFIG_HW_WATCHDOG_TIMEOUT_MS to Kconfig, thanks! -- Tom
signature.asc
Description: Digital signature
_______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

