diff options
| author | Andy Shevchenko <[email protected]> | 2019-06-21 13:28:07 +0300 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2019-06-22 22:26:22 +0800 |
| commit | 8b295a20262802a7ae9704bafa5d0cafb3b4744f (patch) | |
| tree | 0cc68f4caa2a6213f5a8b271d3b5770d6742a481 | |
| parent | 7ce74b70b9ac23276a47cc86c26028b6b6009c2f (diff) | |
watchdog: tangier: Replace unused constant with a comment
The default timeout value had been left in order to leave some traces
about default setup of watchdog done by firmware.
For better understanding and compiler burden, replace it with a comment.
Suggested-by: Stefan Roese <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
| -rw-r--r-- | drivers/watchdog/tangier_wdt.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/watchdog/tangier_wdt.c b/drivers/watchdog/tangier_wdt.c index be4a8f467ac..b2f40ef0574 100644 --- a/drivers/watchdog/tangier_wdt.c +++ b/drivers/watchdog/tangier_wdt.c @@ -10,7 +10,12 @@ #define WDT_PRETIMEOUT 15 #define WDT_TIMEOUT_MIN (1 + WDT_PRETIMEOUT) #define WDT_TIMEOUT_MAX 170 -#define WDT_DEFAULT_TIMEOUT 90 + +/* + * Note, firmware chooses 90 seconds as a default timeout for watchdog on + * Intel Tangier SoC. It means that without handling it in the running code + * the reboot will happen. + */ #ifndef CONFIG_WATCHDOG_TIMEOUT_MSECS #define WATCHDOG_HEARTBEAT 60000 |
