watchdog/hardlockup: fix typo in config HARDLOCKUP_DETECTOR_PREFER_BUDDY

Message ID 20230623040717.8645-1-lukas.bulwahn@gmail.com
State New
Headers
Series watchdog/hardlockup: fix typo in config HARDLOCKUP_DETECTOR_PREFER_BUDDY |

Commit Message

Lukas Bulwahn June 23, 2023, 4:07 a.m. UTC
  Commit a5fcc2367e22 ("watchdog/hardlockup: make HAVE_NMI_WATCHDOG
sparc64-specific") accidentially introduces a typo in one of the config
dependencies of HARDLOCKUP_DETECTOR_PREFER_BUDDY.

Fix this accidental typo.

Fixes: a5fcc2367e22 ("watchdog/hardlockup: make HAVE_NMI_WATCHDOG sparc64-specific")
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
 lib/Kconfig.debug | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Petr Mladek June 23, 2023, 9:39 a.m. UTC | #1
On Fri 2023-06-23 06:07:17, Lukas Bulwahn wrote:
> Commit a5fcc2367e22 ("watchdog/hardlockup: make HAVE_NMI_WATCHDOG
> sparc64-specific") accidentially introduces a typo in one of the config
> dependencies of HARDLOCKUP_DETECTOR_PREFER_BUDDY.
> 
> Fix this accidental typo.
> 
> Fixes: a5fcc2367e22 ("watchdog/hardlockup: make HAVE_NMI_WATCHDOG sparc64-specific")
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>

Thanks for catching this!

Reviewed-by: Petr Mladek <pmladek@suse.com>

Best Regards,
Petr
  

Patch

diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index c4be7ba93b56..781f061ec0fa 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1075,7 +1075,7 @@  config HARDLOCKUP_DETECTOR_PREFER_BUDDY
 	bool "Prefer the buddy CPU hardlockup detector"
 	depends on HARDLOCKUP_DETECTOR
 	depends on HAVE_HARDLOCKUP_DETECTOR_PERF && HAVE_HARDLOCKUP_DETECTOR_BUDDY
-	depends on !HAVE_HARLOCKUP_DETECTOR_ARCH
+	depends on !HAVE_HARDLOCKUP_DETECTOR_ARCH
 	help
 	  Say Y here to prefer the buddy hardlockup detector over the perf one.