diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-12-06 18:33:15 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-06 01:16:25 -0500 |
commit | 2b48716d1d2f2edb1e7cbc5ecf1cb2cb39373e33 (patch) | |
tree | 04c095d45dfa892b7710e338724a1ac4f1da7cba /drivers/macintosh | |
parent | de59cf9ed44f64991e52a9de6094729537f0420c (diff) |
[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.c | 1 | ||||
-rw-r--r-- | drivers/macintosh/therm_pm72.c | 1 | ||||
-rw-r--r-- | drivers/macintosh/therm_windtunnel.c | 1 | ||||
-rw-r--r-- | drivers/macintosh/windfarm_lm75_sensor.c | 1 |
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) | |||
172 | 172 | ||
173 | static struct i2c_driver thermostat_driver = { | 173 | static struct i2c_driver thermostat_driver = { |
174 | .driver = { | 174 | .driver = { |
175 | .owner = THIS_MODULE, | ||
176 | .name = "therm_adt746x", | 175 | .name = "therm_adt746x", |
177 | }, | 176 | }, |
178 | .attach_adapter = attach_thermostat, | 177 | .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); | |||
284 | static struct i2c_driver therm_pm72_driver = | 284 | static struct i2c_driver therm_pm72_driver = |
285 | { | 285 | { |
286 | .driver = { | 286 | .driver = { |
287 | .owner = THIS_MODULE, | ||
288 | .name = "therm_pm72", | 287 | .name = "therm_pm72", |
289 | }, | 288 | }, |
290 | .attach_adapter = therm_pm72_attach, | 289 | .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 ) | |||
355 | 355 | ||
356 | static struct i2c_driver g4fan_driver = { | 356 | static struct i2c_driver g4fan_driver = { |
357 | .driver = { | 357 | .driver = { |
358 | .owner = THIS_MODULE, | ||
359 | .name = "therm_windtunnel", | 358 | .name = "therm_windtunnel", |
360 | }, | 359 | }, |
361 | .id = I2C_DRIVERID_G4FAN, | 360 | .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); | |||
48 | 48 | ||
49 | static struct i2c_driver wf_lm75_driver = { | 49 | static struct i2c_driver wf_lm75_driver = { |
50 | .driver = { | 50 | .driver = { |
51 | .owner = THIS_MODULE, | ||
52 | .name = "wf_lm75", | 51 | .name = "wf_lm75", |
53 | }, | 52 | }, |
54 | .attach_adapter = wf_lm75_attach, | 53 | .attach_adapter = wf_lm75_attach, |