aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/char/watchdog/mpcore_wdt.c1
-rw-r--r--drivers/char/watchdog/mv64x60_wdt.c1
-rw-r--r--drivers/char/watchdog/pcwd_pci.c6
-rw-r--r--drivers/char/watchdog/s3c2410_wdt.c1
-rw-r--r--drivers/char/watchdog/w83627hf_wdt.c2
5 files changed, 8 insertions, 3 deletions
diff --git a/drivers/char/watchdog/mpcore_wdt.c b/drivers/char/watchdog/mpcore_wdt.c
index 47a5f6ab4879..da631c114fd1 100644
--- a/drivers/char/watchdog/mpcore_wdt.c
+++ b/drivers/char/watchdog/mpcore_wdt.c
@@ -396,6 +396,7 @@ static int __devexit mpcore_wdt_remove(struct device *dev)
396} 396}
397 397
398static struct device_driver mpcore_wdt_driver = { 398static struct device_driver mpcore_wdt_driver = {
399 .owner = THIS_MODULE,
399 .name = "mpcore_wdt", 400 .name = "mpcore_wdt",
400 .bus = &platform_bus_type, 401 .bus = &platform_bus_type,
401 .probe = mpcore_wdt_probe, 402 .probe = mpcore_wdt_probe,
diff --git a/drivers/char/watchdog/mv64x60_wdt.c b/drivers/char/watchdog/mv64x60_wdt.c
index 04e0d7e9680d..119b3c541d95 100644
--- a/drivers/char/watchdog/mv64x60_wdt.c
+++ b/drivers/char/watchdog/mv64x60_wdt.c
@@ -213,6 +213,7 @@ static int __devexit mv64x60_wdt_remove(struct device *dev)
213} 213}
214 214
215static struct device_driver mv64x60_wdt_driver = { 215static struct device_driver mv64x60_wdt_driver = {
216 .owner = THIS_MODULE,
216 .name = MV64x60_WDT_NAME, 217 .name = MV64x60_WDT_NAME,
217 .bus = &platform_bus_type, 218 .bus = &platform_bus_type,
218 .probe = mv64x60_wdt_probe, 219 .probe = mv64x60_wdt_probe,
diff --git a/drivers/char/watchdog/pcwd_pci.c b/drivers/char/watchdog/pcwd_pci.c
index 5308e5c8f29a..d9ef55bdf88a 100644
--- a/drivers/char/watchdog/pcwd_pci.c
+++ b/drivers/char/watchdog/pcwd_pci.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * Berkshire PCI-PC Watchdog Card Driver 2 * Berkshire PCI-PC Watchdog Card Driver
3 * 3 *
4 * (c) Copyright 2003 Wim Van Sebroeck <wim@iguana.be>. 4 * (c) Copyright 2003-2005 Wim Van Sebroeck <wim@iguana.be>.
5 * 5 *
6 * Based on source code of the following authors: 6 * Based on source code of the following authors:
7 * Ken Hollis <kenji@bitgate.com>, 7 * Ken Hollis <kenji@bitgate.com>,
@@ -21,7 +21,9 @@
21 */ 21 */
22 22
23/* 23/*
24 * A bells and whistles driver is available from http://www.pcwd.de/ 24 * A bells and whistles driver is available from:
25 * http://www.kernel.org/pub/linux/kernel/people/wim/pcwd/pcwd_pci/
26 *
25 * More info available at http://www.berkprod.com/ or http://www.pcwatchdog.com/ 27 * More info available at http://www.berkprod.com/ or http://www.pcwatchdog.com/
26 */ 28 */
27 29
diff --git a/drivers/char/watchdog/s3c2410_wdt.c b/drivers/char/watchdog/s3c2410_wdt.c
index e7e20a6d64b0..751cb77b0715 100644
--- a/drivers/char/watchdog/s3c2410_wdt.c
+++ b/drivers/char/watchdog/s3c2410_wdt.c
@@ -497,6 +497,7 @@ static int s3c2410wdt_resume(struct device *dev)
497 497
498 498
499static struct device_driver s3c2410wdt_driver = { 499static struct device_driver s3c2410wdt_driver = {
500 .owner = THIS_MODULE,
500 .name = "s3c2410-wdt", 501 .name = "s3c2410-wdt",
501 .bus = &platform_bus_type, 502 .bus = &platform_bus_type,
502 .probe = s3c2410wdt_probe, 503 .probe = s3c2410wdt_probe,
diff --git a/drivers/char/watchdog/w83627hf_wdt.c b/drivers/char/watchdog/w83627hf_wdt.c
index b5d821015421..d15ca9a3986f 100644
--- a/drivers/char/watchdog/w83627hf_wdt.c
+++ b/drivers/char/watchdog/w83627hf_wdt.c
@@ -359,5 +359,5 @@ module_exit(wdt_exit);
359 359
360MODULE_LICENSE("GPL"); 360MODULE_LICENSE("GPL");
361MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>"); 361MODULE_AUTHOR("Pádraig Brady <P@draigBrady.com>");
362MODULE_DESCRIPTION("w38627hf WDT driver"); 362MODULE_DESCRIPTION("w83627hf WDT driver");
363MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); 363MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);