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

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

[PATCH] Owner field additions to many i2c drivers, 1 of 5



This patch updates .owner field for various struct pci_driver variables.

Signed-off-by: default avatarLaurent Riffard <laurent.riffard@free.fr>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent fe3d6a99
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -513,6 +513,7 @@ static void __devexit ali1535_remove(struct pci_dev *dev)
}

static struct pci_driver ali1535_driver = {
	.owner		= THIS_MODULE,
	.name		= "ali1535_smbus",
	.id_table	= ali1535_ids,
	.probe		= ali1535_probe,
+1 −0
Original line number Diff line number Diff line
@@ -408,6 +408,7 @@ static struct pci_device_id __devinitdata ali1563_id_table[] = {
MODULE_DEVICE_TABLE (pci, ali1563_id_table);

static struct pci_driver ali1563_pci_driver = {
	.owner		= THIS_MODULE,
 	.name		= "ali1563_smbus",
	.id_table	= ali1563_id_table,
 	.probe		= ali1563_probe,
+1 −0
Original line number Diff line number Diff line
@@ -504,6 +504,7 @@ static void __devexit ali15x3_remove(struct pci_dev *dev)
}

static struct pci_driver ali15x3_driver = {
	.owner		= THIS_MODULE,
	.name		= "ali15x3_smbus",
	.id_table	= ali15x3_ids,
	.probe		= ali15x3_probe,
+1 −0
Original line number Diff line number Diff line
@@ -401,6 +401,7 @@ static void __devexit amd756_remove(struct pci_dev *dev)
}

static struct pci_driver amd756_driver = {
	.owner		= THIS_MODULE,
	.name		= "amd756_smbus",
	.id_table	= amd756_ids,
	.probe		= amd756_probe,
+1 −0
Original line number Diff line number Diff line
@@ -392,6 +392,7 @@ static void __devexit amd8111_remove(struct pci_dev *dev)
}

static struct pci_driver amd8111_driver = {
	.owner		= THIS_MODULE,
	.name		= "amd8111_smbus2",
	.id_table	= amd8111_ids,
	.probe		= amd8111_probe,
Loading