diff options
| author | Tom Rini <[email protected]> | 2026-03-16 19:24:48 -0600 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2026-06-09 11:51:19 +0200 |
| commit | d98e11bcbcbde2d7448a30cec45d80a9215d3f98 (patch) | |
| tree | d08a33b8d70f5ff178406a7575c4ba39df9655b4 | |
| parent | 2ea4d3f8a545c70697fe3ce25090d02bec38ec38 (diff) | |
watchdog: Correct dependencies for WDT_MAX6370
As exposed by "make randconfig", we have an issue with the dependencies
for WDT_MAX6370. It needs to select both GPIO and DM_GPIO not just
DM_GPIO.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | drivers/watchdog/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index 9ea617f1e43..0e6e6830fc8 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig @@ -217,6 +217,7 @@ config SPL_WDT_GPIO config WDT_MAX6370 bool "MAX6370 watchdog timer support" depends on WDT + select GPIO select DM_GPIO help Select this to enable max6370 watchdog timer. |
