]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
watchdog: Prefix WDT with ICS for clarity
authorPhilipp Hahn <phahn-oss@avm.de>
Tue, 5 May 2026 09:26:16 +0000 (11:26 +0200)
committerGuenter Roeck <linux@roeck-us.net>
Sun, 10 May 2026 15:31:34 +0000 (08:31 -0700)
`wdt.rst` is only about the Watchdog from "Industrial Computer Source"
(ICS). Change the title and rename the file to better express this.

Add missing SPDX license identifier `GPL-2.0-or-later` same as code to
silence `checkpatch`.

Fix wrong link to sample driver in drivers/watchdog/smsc37b787_wdt.c.

Signed-off-by: Philipp Hahn <phahn-oss@avm.de>
Link: https://lore.kernel.org/r/5a71979d8e8ab8e0a30de33f6aa2540b3b5dc1ee.1777972790.git.phahn-oss@avm.de
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Documentation/watchdog/ics-wdt.rst [moved from Documentation/watchdog/wdt.rst with 91% similarity]
Documentation/watchdog/index.rst
drivers/watchdog/Kconfig
drivers/watchdog/smsc37b787_wdt.c

similarity index 91%
rename from Documentation/watchdog/wdt.rst
rename to Documentation/watchdog/ics-wdt.rst
index d97b0361535b0986f79732cdacaabf0ba581b681..b0dc29e56358dea4b1f7b81147cefb0c48ba6409 100644 (file)
@@ -1,6 +1,8 @@
-============================================================
-WDT Watchdog Timer Interfaces For The Linux Operating System
-============================================================
+.. SPDX-License-Identifier: GPL-2.0-or-later
+
+==========================================
+Industrial Computer Source Watchdog Driver
+==========================================
 
 Last Reviewed: 10/05/2007
 
index 293ed05ba6b8732043c4fc6e9b316653e6d3e641..dbc702b31a43e0d9225fbb71ed40ff7a7b581b4e 100644 (file)
@@ -23,6 +23,6 @@ Driver specific
 
     watchdog-parameters
     hpwdt
-    wdt
+    ics-wdt
     mlx-wdt
     pcwd-watchdog
index eb8eb307e04d5cb4256310860350161e4293f575..4c204951bc95cb29b4a19016c8c6bb0ff97be2b6 100644 (file)
@@ -2266,10 +2266,11 @@ config MIXCOMWD
          Most people will say N.
 
 config WDT
-       tristate "WDT Watchdog timer"
+       tristate "ICS WDT500P/501P Watchdog timer"
        depends on ISA
        help
-         If you have a WDT500P or WDT501P watchdog board, say Y here,
+         If you have an Industrial Computer Source (ICS) WDT500P or WDT501P
+         watchdog board, say Y here,
          otherwise N. It is not possible to probe for this board, which means
          that you have to inform the kernel about the IO port and IRQ that
          is needed (you can do this via the io and irq parameters)
@@ -2300,10 +2301,11 @@ config PCIPCWATCHDOG
          Most people will say N.
 
 config WDTPCI
-       tristate "PCI-WDT500/501 Watchdog timer"
+       tristate "ICS PCI-WDT500/501 Watchdog timer"
        depends on PCI && HAS_IOPORT
        help
-         If you have a PCI-WDT500/501 watchdog board, say Y here, otherwise N.
+         If you have an Industrial Computer Source (ICS) PCI-WDT500/501 watchdog
+         board, say Y here, otherwise N.
 
          If you have a PCI-WDT501 watchdog board then you can enable the
          temperature sensor by setting the type parameter to 501.
index 3011e1af00f98a49bb6802e3d4a0dbf7e2a1c3bf..9f2c2ab4e2f157a4e671fac9e03bb9db1d923c76 100644 (file)
@@ -36,7 +36,7 @@
  *  mknod /dev/watchdog c 10 130
  *
  * For an example userspace keep-alive daemon, see:
- *   Documentation/watchdog/wdt.rst
+ *   samples/watchdog/watchdog-simple.c
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt