mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
[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>
This commit is contained in:
parent
d74cdab1ca
commit
e100fe103e
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user