diff options
author | Jean Delvare <khali@linux-fr.org> | 2005-11-26 14:54:10 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-06 01:16:24 -0500 |
commit | b33a665dba55c83f08cdd62aba1cd2672bccdd80 (patch) | |
tree | 42d6c3a15739007a092ac56e887c1f5022ce426c /arch/arm/mach-pxa | |
parent | 1a7edcdca618d25564690c2df27c2c5c6e9f6316 (diff) |
[PATCH] i2c: Drop i2c_driver.{owner,name}, 10 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 arm arch.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
CC: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/akita-ioexp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/mach-pxa/akita-ioexp.c b/arch/arm/mach-pxa/akita-ioexp.c index b6bff550c8e9..6f7b96551ada 100644 --- a/arch/arm/mach-pxa/akita-ioexp.c +++ b/arch/arm/mach-pxa/akita-ioexp.c | |||
@@ -124,8 +124,10 @@ static int max7310_detach_client(struct i2c_client *client) | |||
124 | } | 124 | } |
125 | 125 | ||
126 | static struct i2c_driver max7310_i2c_driver = { | 126 | static struct i2c_driver max7310_i2c_driver = { |
127 | .owner = THIS_MODULE, | 127 | .driver = { |
128 | .name = "akita-max7310", | 128 | .owner = THIS_MODULE, |
129 | .name = "akita-max7310", | ||
130 | }, | ||
129 | .id = I2C_DRIVERID_AKITAIOEXP, | 131 | .id = I2C_DRIVERID_AKITAIOEXP, |
130 | .attach_adapter = max7310_attach_adapter, | 132 | .attach_adapter = max7310_attach_adapter, |
131 | .detach_client = max7310_detach_client, | 133 | .detach_client = max7310_detach_client, |