aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Lapkin <[email protected]>2021-11-10 10:25:18 +0800
committerWim Van Sebroeck <[email protected]>2021-12-28 13:59:06 +0100
commitaeaacc064d8502b3f3ee662325df8fab24ad9006 (patch)
tree674a366e0df0601d9ce6fb95c9a918e8a8af7d77
parent15ebdc43d703e95e4ec9bae1b5411f1afb07c0b8 (diff)
watchdog: meson_gxbb_wdt: remove stop_on_reboot
Remove watchdog_stop_on_reboot() The Meson platform still has some hardware drivers problems for some configurations which can freeze devices on shutdown/reboot. Remove watchdog_stop_on_reboot() to catch this situation and ensure that the reboot happens anyway. Users who still want to stop the watchdog on reboot can still do so using the watchdog.stop_on_reboot=1 module parameter. https://lore.kernel.org/linux-watchdog/[email protected]/T/#t Signed-off-by: Artem Lapkin <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Wim Van Sebroeck <[email protected]>
-rw-r--r--drivers/watchdog/meson_gxbb_wdt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/watchdog/meson_gxbb_wdt.c b/drivers/watchdog/meson_gxbb_wdt.c
index 945f5e65db57..d3c9e2f6e63b 100644
--- a/drivers/watchdog/meson_gxbb_wdt.c
+++ b/drivers/watchdog/meson_gxbb_wdt.c
@@ -198,7 +198,6 @@ static int meson_gxbb_wdt_probe(struct platform_device *pdev)
meson_gxbb_wdt_set_timeout(&data->wdt_dev, data->wdt_dev.timeout);
- watchdog_stop_on_reboot(&data->wdt_dev);
return devm_watchdog_register_device(dev, &data->wdt_dev);
}