Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'linux-watchdog-6.10-rc-fixes' of git://www.linux-watchdog.org/linux-watchdog

Pull watchdog fixes from Wim Van Sebroeck:

- lenovo_se10_wdt: add HAS_IOPORT dependency

- add missing MODULE_DESCRIPTION() macros

* tag 'linux-watchdog-6.10-rc-fixes' of git://www.linux-watchdog.org/linux-watchdog:
watchdog: add missing MODULE_DESCRIPTION() macros
watchdog: lenovo_se10_wdt: add HAS_IOPORT dependency

+6
+1
drivers/watchdog/Kconfig
··· 257 257 config LENOVO_SE10_WDT 258 258 tristate "Lenovo SE10 Watchdog" 259 259 depends on (X86 && DMI) || COMPILE_TEST 260 + depends on HAS_IOPORT 260 261 select WATCHDOG_CORE 261 262 help 262 263 If you say yes here you get support for the watchdog
+1
drivers/watchdog/menz69_wdt.c
··· 161 161 module_mcb_driver(men_z069_driver); 162 162 163 163 MODULE_AUTHOR("Johannes Thumshirn <jth@kernel.org>"); 164 + MODULE_DESCRIPTION("Watchdog driver for the MEN z069 IP-Core"); 164 165 MODULE_LICENSE("GPL v2"); 165 166 MODULE_ALIAS("mcb:16z069"); 166 167 MODULE_IMPORT_NS(MCB);
+1
drivers/watchdog/omap_wdt.c
··· 370 370 module_platform_driver(omap_wdt_driver); 371 371 372 372 MODULE_AUTHOR("George G. Davis"); 373 + MODULE_DESCRIPTION("Driver for the TI OMAP 16xx/24xx/34xx 32KHz (non-secure) watchdog"); 373 374 MODULE_LICENSE("GPL"); 374 375 MODULE_ALIAS("platform:omap_wdt");
+1
drivers/watchdog/simatic-ipc-wdt.c
··· 227 227 228 228 module_platform_driver(simatic_ipc_wdt_driver); 229 229 230 + MODULE_DESCRIPTION("Siemens SIMATIC IPC driver for Watchdogs"); 230 231 MODULE_LICENSE("GPL v2"); 231 232 MODULE_ALIAS("platform:" KBUILD_MODNAME); 232 233 MODULE_AUTHOR("Gerd Haeussler <gerd.haeussler.ext@siemens.com>");
+1
drivers/watchdog/ts4800_wdt.c
··· 200 200 module_platform_driver(ts4800_wdt_driver); 201 201 202 202 MODULE_AUTHOR("Damien Riegel <damien.riegel@savoirfairelinux.com>"); 203 + MODULE_DESCRIPTION("Watchdog driver for TS-4800 based boards"); 203 204 MODULE_LICENSE("GPL v2"); 204 205 MODULE_ALIAS("platform:ts4800_wdt");
+1
drivers/watchdog/twl4030_wdt.c
··· 118 118 module_platform_driver(twl4030_wdt_driver); 119 119 120 120 MODULE_AUTHOR("Nokia Corporation"); 121 + MODULE_DESCRIPTION("TWL4030 Watchdog"); 121 122 MODULE_LICENSE("GPL"); 122 123 MODULE_ALIAS("platform:twl4030_wdt"); 123 124