Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a33ca232 authored by Laurent Riffard's avatar Laurent Riffard Committed by Greg Kroah-Hartman
Browse files

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

Signed-off-by: default avatarLaurent Riffard <laurent.riffard@free.fr>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cdaf7934
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -171,8 +171,10 @@ detach_thermostat(struct i2c_adapter *adapter)
}

static struct i2c_driver thermostat_driver = {  
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "therm_adt746x",
	},
	.attach_adapter	= attach_thermostat,
	.detach_adapter	= detach_thermostat,
};
+4 −2
Original line number Diff line number Diff line
@@ -283,8 +283,10 @@ static int therm_pm72_detach(struct i2c_adapter *adapter);

static struct i2c_driver therm_pm72_driver =
{
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "therm_pm72",
	},
	.attach_adapter	= therm_pm72_attach,
	.detach_adapter	= therm_pm72_detach,
};
+4 −2
Original line number Diff line number Diff line
@@ -354,8 +354,10 @@ do_detach( struct i2c_client *client )
}

static struct i2c_driver g4fan_driver = {  
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "therm_windtunnel",
	},
	.id		= I2C_DRIVERID_G4FAN,
	.attach_adapter = do_attach,
	.detach_client	= do_detach,
+4 −2
Original line number Diff line number Diff line
@@ -47,8 +47,10 @@ static int wf_lm75_attach(struct i2c_adapter *adapter);
static int wf_lm75_detach(struct i2c_client *client);

static struct i2c_driver wf_lm75_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "wf_lm75",
	},
	.attach_adapter	= wf_lm75_attach,
	.detach_client	= wf_lm75_detach,
};