summaryrefslogtreecommitdiff
path: root/include/linux/nmi.h
diff options
context:
space:
mode:
authorMatthew Chen <edcr1790@gmail.com>2026-06-16 01:45:57 +0800
committerAndrew Morton <akpm@linux-foundation.org>2026-07-01 20:00:51 -0700
commit63497cd82698a155162a27669ffaa475e676bf96 (patch)
treef0060cc8b92799e1332f0104afa51e740b6af69a /include/linux/nmi.h
parent2d70aa88a8aad40af47818f400821301f277321d (diff)
downloadlinux-next-63497cd82698a155162a27669ffaa475e676bf96.tar.gz
linux-next-63497cd82698a155162a27669ffaa475e676bf96.zip
watchdog/softlockup: fix softlockup typos
Fix misspellings of "softlockup" in the watchdog enabled bit definitions and related comments. Also fix a nearby "successful" typo. No functional change. Link: https://lore.kernel.org/20260615174557.1836562-1-edcr1790@gmail.com Signed-off-by: Matthew Chen <edcr1790@gmail.com> Reviewed-by: Douglas Anderson <dianders@chromium.org> Reviewed-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux/nmi.h')
-rw-r--r--include/linux/nmi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/nmi.h b/include/linux/nmi.h
index bc1162895f35..89c5465e2524 100644
--- a/include/linux/nmi.h
+++ b/include/linux/nmi.h
@@ -77,9 +77,9 @@ static inline void reset_hung_task_detector(void) { }
* detectors are 'suspended' while 'watchdog_thresh' is equal zero.
*/
#define WATCHDOG_HARDLOCKUP_ENABLED_BIT 0
-#define WATCHDOG_SOFTOCKUP_ENABLED_BIT 1
+#define WATCHDOG_SOFTLOCKUP_ENABLED_BIT 1
#define WATCHDOG_HARDLOCKUP_ENABLED (1 << WATCHDOG_HARDLOCKUP_ENABLED_BIT)
-#define WATCHDOG_SOFTOCKUP_ENABLED (1 << WATCHDOG_SOFTOCKUP_ENABLED_BIT)
+#define WATCHDOG_SOFTLOCKUP_ENABLED (1 << WATCHDOG_SOFTLOCKUP_ENABLED_BIT)
#if defined(CONFIG_HARDLOCKUP_DETECTOR)
extern void hardlockup_detector_disable(void);