Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59dcf1eb authored by Mika Westerberg's avatar Mika Westerberg Committed by Wim Van Sebroeck
Browse files

watchdog: ep93xx_wdt: Fix timeout after conversion to watchdog core



After the conversion of this driver to the watchdog core, I noticed that we
miss setting the initial timeout of the wdt device.
This results in a failure of the WDIOC_GETTIMEOUT ioctl call.

Reviewed-by: default avatarMika Westerberg <mika.westerberg@iki.fi>
Tested-by: default avatarMika Westerberg <mika.westerberg@iki.fi>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent e12a679d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@ static int __devinit ep93xx_wdt_probe(struct platform_device *pdev)

	val = readl(mmio_base + EP93XX_WATCHDOG);
	ep93xx_wdt_wdd.bootstatus = (val & 0x01) ? WDIOF_CARDRESET : 0;
	ep93xx_wdt_wdd.timeout = timeout;

	watchdog_set_nowayout(&ep93xx_wdt_wdd, nowayout);