diff options
author | Michael Walle <michael@walle.cc> | 2020-09-24 10:09:15 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-11-01 15:57:35 +0100 |
commit | 95b3d6a4191a5708f1259255fea6cf22f7dc2135 (patch) | |
tree | e385d4613fa47d2c90d30e592d51c428297c0114 /drivers | |
parent | e98d83471344364d783e9f66962ee63c8c21cda5 (diff) | |
download | u-boot-95b3d6a4191a5708f1259255fea6cf22f7dc2135.zip u-boot-95b3d6a4191a5708f1259255fea6cf22f7dc2135.tar.gz u-boot-95b3d6a4191a5708f1259255fea6cf22f7dc2135.tar.bz2 |
watchdog: Hide WATCHDOG_RESET_DISABLE
This option is only supported by the IMX watchdog and seems to be
similar to CONFIG_WATCHDOG.
Move it below the IMX watchdog and make it dependent on IMX_WATCHDOG.
Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/watchdog/Kconfig | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index 210d9f8..4532a40 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig @@ -21,12 +21,6 @@ config WATCHDOG_TIMEOUT_MSECS config HW_WATCHDOG bool -config WATCHDOG_RESET_DISABLE - bool "Disable reset watchdog" - help - Disable reset watchdog, which can let WATCHDOG_RESET invalid, so - that the watchdog will not be fed in u-boot. - config IMX_WATCHDOG bool "Enable Watchdog Timer support for IMX and LSCH2 of NXP" select HW_WATCHDOG if !WDT @@ -34,6 +28,13 @@ config IMX_WATCHDOG Select this to enable the IMX and LSCH2 of Layerscape watchdog driver. +config WATCHDOG_RESET_DISABLE + bool "Disable reset watchdog" + depends on IMX_WATCHDOG + help + Disable reset watchdog, which can let WATCHDOG_RESET invalid, so + that the watchdog will not be fed in u-boot. + config OMAP_WATCHDOG bool "TI OMAP watchdog driver" depends on ARCH_OMAP2PLUS |