]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
watchdog: Hide WATCHDOG_RESET_DISABLE
authorMichael Walle <michael@walle.cc>
Thu, 24 Sep 2020 08:09:15 +0000 (10:09 +0200)
committerStefano Babic <sbabic@denx.de>
Sun, 1 Nov 2020 14:57:35 +0000 (15:57 +0100)
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>
drivers/watchdog/Kconfig

index 210d9f8093dd370dc457b0aeff3ce947b40a3ba8..4532a40e4587fdfcaf2386efd015d950b8638e59 100644 (file)
@@ -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