[WATCHDOG] small trivial fixes + add .owner to driver struct's

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Linus,

please do a

	git pull rsync://rsync.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git

This will update the following files:

 drivers/char/watchdog/mpcore_wdt.c   |    1 +
 drivers/char/watchdog/mv64x60_wdt.c  |    1 +
 drivers/char/watchdog/pcwd_pci.c     |    6 ++++--
 drivers/char/watchdog/s3c2410_wdt.c  |    1 +
 drivers/char/watchdog/w83627hf_wdt.c |    2 +-
 5 files changed, 8 insertions(+), 3 deletions(-)

with these Changes:

Author: Wim Van Sebroeck <[email protected]>
Date:   Sun Oct 23 15:21:44 2005 +0200

    [WATCHDOG] adds device_driver .owner field
    
    Initialise the .owner field of the device driver
    with the module that owns it, for easier tracking
    of device driver ownership. (probably also better
    for sysfs...)
    
    Signed-off-by: Wim Van Sebroeck <[email protected]>

Author: Wim Van Sebroeck <[email protected]>
Date:   Sat Oct 22 16:27:19 2005 +0200

    [WATCHDOG] pcwd_pci.c update comments
    
    update copyright + update bells and whistles driver for v2.6
    
    Signed-off-by: Wim Van Sebroeck <[email protected]>

Author: Pozsar Balazs <[email protected]>
Date:   Fri Oct 21 10:52:01 2005 +0100

    [WATCHDOG] w83627hf_wdt trivial typo
    
    The most trivial typo fix in the world.
    
    Signed-off-by: Pozsar Balazs <[email protected]>
    Signed-off-by: Pádraig Brady <[email protected]>
    Signed-off-by: Wim Van Sebroeck <[email protected]>

Author: Ben Dooks <[email protected]>
Date:   Mon Oct 10 01:28:30 2005 +0100

    [WATCHDOG] s3c2410 wdt - add .owner field
    
    Initialise the .owner field of the device driver
    with the module that owns it, for easier tracking
    of device driver ownership.
    
    Signed-off-by: Ben Dooks <[email protected]>
    Signed-off-by: Wim Van Sebroeck <[email protected]>


The Changes can also be looked at on:
	http://www.kernel.org/git/?p=linux/kernel/git/wim/linux-2.6-watchdog.git;a=summary

For completeness, I added the overal diff below.

Greetings,
Wim.

================================================================================
diff --git a/drivers/char/watchdog/mpcore_wdt.c b/drivers/char/watchdog/mpcore_wdt.c
index 47a5f6a..da631c1 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(s
 }
 
 static struct device_driver mpcore_wdt_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "mpcore_wdt",
 	.bus		= &platform_bus_type,
 	.probe		= mpcore_wdt_probe,
diff --git a/drivers/char/watchdog/mv64x60_wdt.c b/drivers/char/watchdog/mv64x60_wdt.c
index 04e0d7e..119b3c5 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(
 }
 
 static struct device_driver mv64x60_wdt_driver = {
+	.owner = THIS_MODULE,
 	.name = MV64x60_WDT_NAME,
 	.bus = &platform_bus_type,
 	.probe = mv64x60_wdt_probe,
diff --git a/drivers/char/watchdog/pcwd_pci.c b/drivers/char/watchdog/pcwd_pci.c
index 5308e5c..d9ef55b 100644
--- a/drivers/char/watchdog/pcwd_pci.c
+++ b/drivers/char/watchdog/pcwd_pci.c
@@ -1,7 +1,7 @@
 /*
  *	Berkshire PCI-PC Watchdog Card Driver
  *
- *	(c) Copyright 2003 Wim Van Sebroeck <[email protected]>.
+ *	(c) Copyright 2003-2005 Wim Van Sebroeck <[email protected]>.
  *
  *	Based on source code of the following authors:
  *	  Ken Hollis <[email protected]>,
@@ -21,7 +21,9 @@
  */
 
 /*
- *	A bells and whistles driver is available from http://www.pcwd.de/
+ *	A bells and whistles driver is available from: 
+ *	http://www.kernel.org/pub/linux/kernel/people/wim/pcwd/pcwd_pci/
+ *
  *	More info available at http://www.berkprod.com/ or http://www.pcwatchdog.com/
  */
 
diff --git a/drivers/char/watchdog/s3c2410_wdt.c b/drivers/char/watchdog/s3c2410_wdt.c
index e7e20a6..751cb77 100644
--- a/drivers/char/watchdog/s3c2410_wdt.c
+++ b/drivers/char/watchdog/s3c2410_wdt.c
@@ -497,6 +497,7 @@ static int s3c2410wdt_resume(struct devi
 
 
 static struct device_driver s3c2410wdt_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "s3c2410-wdt",
 	.bus		= &platform_bus_type,
 	.probe		= s3c2410wdt_probe,
diff --git a/drivers/char/watchdog/w83627hf_wdt.c b/drivers/char/watchdog/w83627hf_wdt.c
index b5d8210..d15ca9a 100644
--- a/drivers/char/watchdog/w83627hf_wdt.c
+++ b/drivers/char/watchdog/w83627hf_wdt.c
@@ -359,5 +359,5 @@ module_exit(wdt_exit);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Pádraig Brady <[email protected]>");
-MODULE_DESCRIPTION("w38627hf WDT driver");
+MODULE_DESCRIPTION("w83627hf WDT driver");
 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux