1
0
Fork 0

[PATCH] i2c: Drop i2c_driver.{owner,name}, 7 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 ppc arch.

Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Laurent Riffard 2005-11-26 20:48:35 +01:00 committed by Greg Kroah-Hartman
parent d74cdab1ca
commit e100fe103e
1 changed files with 4 additions and 1 deletions

View File

@ -41,7 +41,10 @@ static int keywest_attach_adapter(struct i2c_adapter *adapter);
static int keywest_detach_client(struct i2c_client *client);
struct i2c_driver keywest_driver = {
.name = "PMac Keywest Audio",
.driver = {
.owner = THIS_MODULE,
.name = "PMac Keywest Audio",
},
.id = I2C_DRIVERID_KEYWEST,
.attach_adapter = &keywest_attach_adapter,
.detach_client = &keywest_detach_client,