[PATCH] i2c: Drop i2c_driver.{owner,name}, 10 of 11
authorJean Delvare <khali@linux-fr.org>
Sat, 26 Nov 2005 19:54:10 +0000 (20:54 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 6 Jan 2006 06:16:24 +0000 (22:16 -0800)
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>
arch/arm/mach-pxa/akita-ioexp.c

index b6bff55..6f7b965 100644 (file)
@@ -124,8 +124,10 @@ static int max7310_detach_client(struct i2c_client *client)
 }
 
 static struct i2c_driver max7310_i2c_driver = {
-       .owner          = THIS_MODULE,
-       .name           = "akita-max7310",
+       .driver = {
+               .owner  = THIS_MODULE,
+               .name   = "akita-max7310",
+       },
        .id             = I2C_DRIVERID_AKITAIOEXP,
        .attach_adapter = max7310_attach_adapter,
        .detach_client  = max7310_detach_client,