diff options
author | Laurent Riffard <laurent.riffard@free.fr> | 2005-11-26 14:40:34 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-06 01:16:23 -0500 |
commit | a33ca23231a37e28d15da9546b1f3e83dc48284b (patch) | |
tree | 50c59c7dfbf77cb9297dd20d2aa1e3958f5f358d /drivers/macintosh/therm_pm72.c | |
parent | cdaf79349c7d24e1d33acb6497849c9e956a33ea (diff) |
[PATCH] i2c: Drop i2c_driver.{owner,name}, 4 of 11
We should use the i2c_driver.driver's .name and .owner fields
instead of the i2c_driver's ones.
This patch updates the drivers for macintosh.
Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/macintosh/therm_pm72.c')
-rw-r--r-- | drivers/macintosh/therm_pm72.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c index df00c960fc5a..97807be6422b 100644 --- a/drivers/macintosh/therm_pm72.c +++ b/drivers/macintosh/therm_pm72.c | |||
@@ -283,8 +283,10 @@ static int therm_pm72_detach(struct i2c_adapter *adapter); | |||
283 | 283 | ||
284 | static struct i2c_driver therm_pm72_driver = | 284 | static struct i2c_driver therm_pm72_driver = |
285 | { | 285 | { |
286 | .owner = THIS_MODULE, | 286 | .driver = { |
287 | .name = "therm_pm72", | 287 | .owner = THIS_MODULE, |
288 | .name = "therm_pm72", | ||
289 | }, | ||
288 | .attach_adapter = therm_pm72_attach, | 290 | .attach_adapter = therm_pm72_attach, |
289 | .detach_adapter = therm_pm72_detach, | 291 | .detach_adapter = therm_pm72_detach, |
290 | }; | 292 | }; |