aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/macintosh
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2005-12-06 15:33:15 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2006-01-05 22:16:25 -0800
commit2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33 (patch)
tree04c095d45dfa892b7710e338724a1ac4f1da7cba /drivers/macintosh
parent[PATCH] I2C: Make i2c_add_driver automatically set the proper module owner (diff)
downloadlinux-dev-2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33.tar.xz
linux-dev-2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33.zip
[PATCH] I2C: Remove .owner setting from i2c_driver as it's no longer needed
Now that i2c_add_driver() doesn't need the module owner to be set by hand, we can delete it from the drivers. This patch catches all of the drivers that I found in the current tree (if a driver sets the .owner by hand, it's not a problem, just not needed.) Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Cc: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'drivers/macintosh')
-rw-r--r--drivers/macintosh/therm_adt746x.c1
-rw-r--r--drivers/macintosh/therm_pm72.c1
-rw-r--r--drivers/macintosh/therm_windtunnel.c1
-rw-r--r--drivers/macintosh/windfarm_lm75_sensor.c1
4 files changed, 0 insertions, 4 deletions
diff --git a/drivers/macintosh/therm_adt746x.c b/drivers/macintosh/therm_adt746x.c
index 8bb1d857e14d..02a3117ef92d 100644
--- a/drivers/macintosh/therm_adt746x.c
+++ b/drivers/macintosh/therm_adt746x.c
@@ -172,7 +172,6 @@ detach_thermostat(struct i2c_adapter *adapter)
static struct i2c_driver thermostat_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "therm_adt746x",
},
.attach_adapter = attach_thermostat,
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c
index 97807be6422b..cf72b782f60f 100644
--- a/drivers/macintosh/therm_pm72.c
+++ b/drivers/macintosh/therm_pm72.c
@@ -284,7 +284,6 @@ static int therm_pm72_detach(struct i2c_adapter *adapter);
static struct i2c_driver therm_pm72_driver =
{
.driver = {
- .owner = THIS_MODULE,
.name = "therm_pm72",
},
.attach_adapter = therm_pm72_attach,
diff --git a/drivers/macintosh/therm_windtunnel.c b/drivers/macintosh/therm_windtunnel.c
index 259f19d5816c..3d9dd2e166aa 100644
--- a/drivers/macintosh/therm_windtunnel.c
+++ b/drivers/macintosh/therm_windtunnel.c
@@ -355,7 +355,6 @@ do_detach( struct i2c_client *client )
static struct i2c_driver g4fan_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "therm_windtunnel",
},
.id = I2C_DRIVERID_G4FAN,
diff --git a/drivers/macintosh/windfarm_lm75_sensor.c b/drivers/macintosh/windfarm_lm75_sensor.c
index 555d0e4eda1d..fd16642d98ab 100644
--- a/drivers/macintosh/windfarm_lm75_sensor.c
+++ b/drivers/macintosh/windfarm_lm75_sensor.c
@@ -48,7 +48,6 @@ static int wf_lm75_detach(struct i2c_client *client);
static struct i2c_driver wf_lm75_driver = {
.driver = {
- .owner = THIS_MODULE,
.name = "wf_lm75",
},
.attach_adapter = wf_lm75_attach,