1
0
Fork 0

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

Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Petr Vandrovec <petr@vandrovec.name>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Laurent Riffard 2005-11-26 20:52:34 +01:00 committed by Greg Kroah-Hartman
parent e533449d29
commit 1a7edcdca6
1 changed files with 4 additions and 2 deletions

View File

@ -1293,8 +1293,10 @@ static int maven_command(struct i2c_client* client, unsigned int cmd, void* arg)
}
static struct i2c_driver maven_driver={
.owner = THIS_MODULE,
.name = "maven",
.driver = {
.owner = THIS_MODULE,
.name = "maven",
},
.id = I2C_DRIVERID_MGATVO,
.attach_adapter = maven_attach_adapter,
.detach_client = maven_detach_client,