Commit b33a665d authored by Jean Delvare's avatar Jean Delvare Committed by Greg Kroah-Hartman

[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: default avatarJean Delvare <khali@linux-fr.org>
CC: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 1a7edcdc
...@@ -124,8 +124,10 @@ static int max7310_detach_client(struct i2c_client *client) ...@@ -124,8 +124,10 @@ static int max7310_detach_client(struct i2c_client *client)
} }
static struct i2c_driver max7310_i2c_driver = { static struct i2c_driver max7310_i2c_driver = {
.owner = THIS_MODULE, .driver = {
.name = "akita-max7310", .owner = THIS_MODULE,
.name = "akita-max7310",
},
.id = I2C_DRIVERID_AKITAIOEXP, .id = I2C_DRIVERID_AKITAIOEXP,
.attach_adapter = max7310_attach_adapter, .attach_adapter = max7310_attach_adapter,
.detach_client = max7310_detach_client, .detach_client = max7310_detach_client,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment