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

Commit 87218842 authored by Jean Delvare's avatar Jean Delvare Committed by Greg Kroah-Hartman
Browse files

i2c-isa: Restore driver owner



i2c-isa: Restore driver owner

Commit 2b48716d back in January
2006 was a bit overzealous. It removed .owner from all i2c drivers,
including i2c-isa ones, while they still need it.

Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent c243353a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -243,6 +243,7 @@ static struct i2c_driver it87_driver = {

static struct i2c_driver it87_isa_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "it87-isa",
	},
	.attach_adapter	= it87_isa_attach_adapter,
+1 −0
Original line number Diff line number Diff line
@@ -175,6 +175,7 @@ static struct i2c_driver lm78_driver = {

static struct i2c_driver lm78_isa_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "lm78-isa",
	},
	.attach_adapter	= lm78_isa_attach_adapter,
+1 −0
Original line number Diff line number Diff line
@@ -238,6 +238,7 @@ static struct pc87360_data *pc87360_update_device(struct device *dev);

static struct i2c_driver pc87360_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "pc87360",
	},
	.attach_adapter	= pc87360_detect,
+1 −0
Original line number Diff line number Diff line
@@ -200,6 +200,7 @@ static void sis5595_init_client(struct i2c_client *client);

static struct i2c_driver sis5595_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "sis5595",
	},
	.attach_adapter	= sis5595_detect,
+1 −0
Original line number Diff line number Diff line
@@ -228,6 +228,7 @@ static int smsc47b397_detect(struct i2c_adapter *adapter);

static struct i2c_driver smsc47b397_driver = {
	.driver = {
		.owner	= THIS_MODULE,
		.name	= "smsc47b397",
	},
	.attach_adapter	= smsc47b397_detect,
Loading