]> Git Repo - J-linux.git/commitdiff
watchdog: add missing MODULE_DESCRIPTION() macros
authorJeff Johnson <[email protected]>
Fri, 7 Jun 2024 18:04:40 +0000 (11:04 -0700)
committerWim Van Sebroeck <[email protected]>
Sat, 15 Jun 2024 10:49:57 +0000 (12:49 +0200)
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/watchdog/omap_wdt.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/watchdog/twl4030_wdt.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/watchdog/ts4800_wdt.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/watchdog/simatic-ipc-wdt.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/watchdog/menz69_wdt.o

Add the missing invocations of the MODULE_DESCRIPTION() macro.

Signed-off-by: Jeff Johnson <[email protected]>
Reviewed-by: Guenter Roeck <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Guenter Roeck <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
drivers/watchdog/menz69_wdt.c
drivers/watchdog/omap_wdt.c
drivers/watchdog/simatic-ipc-wdt.c
drivers/watchdog/ts4800_wdt.c
drivers/watchdog/twl4030_wdt.c

index c7de30270043d8a9d89a048c16e0a25fba6ddfa8..0508a65acfa65665f23f367f286ee2e75a34e404 100644 (file)
@@ -161,6 +161,7 @@ static struct mcb_driver men_z069_driver = {
 module_mcb_driver(men_z069_driver);
 
 MODULE_AUTHOR("Johannes Thumshirn <[email protected]>");
+MODULE_DESCRIPTION("Watchdog driver for the MEN z069 IP-Core");
 MODULE_LICENSE("GPL v2");
 MODULE_ALIAS("mcb:16z069");
 MODULE_IMPORT_NS(MCB);
index a7a12f2fe9de9846ae779c1b7001f2702cb3fd16..b6e0236509bbd668b9c57d25445f65b593c7a7f1 100644 (file)
@@ -370,5 +370,6 @@ static struct platform_driver omap_wdt_driver = {
 module_platform_driver(omap_wdt_driver);
 
 MODULE_AUTHOR("George G. Davis");
+MODULE_DESCRIPTION("Driver for the TI OMAP 16xx/24xx/34xx 32KHz (non-secure) watchdog");
 MODULE_LICENSE("GPL");
 MODULE_ALIAS("platform:omap_wdt");
index cdc1a2e1518051c212e64214086f071ac3bde61e..1e91f0a560ffcefdde10ff3104c60cc441ef2f25 100644 (file)
@@ -227,6 +227,7 @@ static struct platform_driver simatic_ipc_wdt_driver = {
 
 module_platform_driver(simatic_ipc_wdt_driver);
 
+MODULE_DESCRIPTION("Siemens SIMATIC IPC driver for Watchdogs");
 MODULE_LICENSE("GPL v2");
 MODULE_ALIAS("platform:" KBUILD_MODNAME);
 MODULE_AUTHOR("Gerd Haeussler <[email protected]>");
index 0099403f49922faf643e6451a106694daf5d3069..24b1ad52102e81de3287d2a9a0b1bfb2ca99faef 100644 (file)
@@ -200,5 +200,6 @@ static struct platform_driver ts4800_wdt_driver = {
 module_platform_driver(ts4800_wdt_driver);
 
 MODULE_AUTHOR("Damien Riegel <[email protected]>");
+MODULE_DESCRIPTION("Watchdog driver for TS-4800 based boards");
 MODULE_LICENSE("GPL v2");
 MODULE_ALIAS("platform:ts4800_wdt");
index 09d17e20f4a76aadb4de63b03c9198db09d9785c..8c80d04811e4ef2ae74442259b631a7226b55230 100644 (file)
@@ -118,6 +118,7 @@ static struct platform_driver twl4030_wdt_driver = {
 module_platform_driver(twl4030_wdt_driver);
 
 MODULE_AUTHOR("Nokia Corporation");
+MODULE_DESCRIPTION("TWL4030 Watchdog");
 MODULE_LICENSE("GPL");
 MODULE_ALIAS("platform:twl4030_wdt");
 
This page took 0.050382 seconds and 4 git commands to generate.