浏览代码

[AGPGART] Set .owner field of struct pci_driver.

From: Laurent Riffard <laurent.riffard@free.fr>

This updates .owner field of struct pci_driver.

This allows SYSFS to create the symlink from the driver to the module which
provides it.

$ tree /sys/bus/pci/drivers/agpgart-via/
/sys/bus/pci/drivers/agpgart-via/
|-- 0000:00:00.0 -> ../../../../devices/pci0000:00/0000:00:00.0
|-- bind
|-- module -> ../../../../module/via_agp
|-- new_id
`-- unbind

Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Dave Jones 19 年之前
父节点
当前提交
ea248bcaad

+ 1 - 0
drivers/char/agp/ali-agp.c

@@ -388,6 +388,7 @@ static struct pci_device_id agp_ali_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_ali_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_ali_pci_table);
 
 
 static struct pci_driver agp_ali_pci_driver = {
 static struct pci_driver agp_ali_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-ali",
 	.name		= "agpgart-ali",
 	.id_table	= agp_ali_pci_table,
 	.id_table	= agp_ali_pci_table,
 	.probe		= agp_ali_probe,
 	.probe		= agp_ali_probe,

+ 1 - 0
drivers/char/agp/amd-k7-agp.c

@@ -515,6 +515,7 @@ static struct pci_device_id agp_amdk7_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_amdk7_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_amdk7_pci_table);
 
 
 static struct pci_driver agp_amdk7_pci_driver = {
 static struct pci_driver agp_amdk7_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-amdk7",
 	.name		= "agpgart-amdk7",
 	.id_table	= agp_amdk7_pci_table,
 	.id_table	= agp_amdk7_pci_table,
 	.probe		= agp_amdk7_probe,
 	.probe		= agp_amdk7_probe,

+ 1 - 0
drivers/char/agp/amd64-agp.c

@@ -701,6 +701,7 @@ static struct pci_device_id agp_amd64_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_amd64_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_amd64_pci_table);
 
 
 static struct pci_driver agp_amd64_pci_driver = {
 static struct pci_driver agp_amd64_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-amd64",
 	.name		= "agpgart-amd64",
 	.id_table	= agp_amd64_pci_table,
 	.id_table	= agp_amd64_pci_table,
 	.probe		= agp_amd64_probe,
 	.probe		= agp_amd64_probe,

+ 1 - 0
drivers/char/agp/ati-agp.c

@@ -519,6 +519,7 @@ static struct pci_device_id agp_ati_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_ati_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_ati_pci_table);
 
 
 static struct pci_driver agp_ati_pci_driver = {
 static struct pci_driver agp_ati_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-ati",
 	.name		= "agpgart-ati",
 	.id_table	= agp_ati_pci_table,
 	.id_table	= agp_ati_pci_table,
 	.probe		= agp_ati_probe,
 	.probe		= agp_ati_probe,

+ 1 - 0
drivers/char/agp/efficeon-agp.c

@@ -429,6 +429,7 @@ static struct pci_device_id agp_efficeon_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_efficeon_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_efficeon_pci_table);
 
 
 static struct pci_driver agp_efficeon_pci_driver = {
 static struct pci_driver agp_efficeon_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-efficeon",
 	.name		= "agpgart-efficeon",
 	.id_table	= agp_efficeon_pci_table,
 	.id_table	= agp_efficeon_pci_table,
 	.probe		= agp_efficeon_probe,
 	.probe		= agp_efficeon_probe,

+ 1 - 0
drivers/char/agp/i460-agp.c

@@ -615,6 +615,7 @@ static struct pci_device_id agp_intel_i460_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_intel_i460_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_intel_i460_pci_table);
 
 
 static struct pci_driver agp_intel_i460_pci_driver = {
 static struct pci_driver agp_intel_i460_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-intel-i460",
 	.name		= "agpgart-intel-i460",
 	.id_table	= agp_intel_i460_pci_table,
 	.id_table	= agp_intel_i460_pci_table,
 	.probe		= agp_intel_i460_probe,
 	.probe		= agp_intel_i460_probe,

+ 1 - 0
drivers/char/agp/intel-agp.c

@@ -1824,6 +1824,7 @@ static struct pci_device_id agp_intel_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_intel_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_intel_pci_table);
 
 
 static struct pci_driver agp_intel_pci_driver = {
 static struct pci_driver agp_intel_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-intel",
 	.name		= "agpgart-intel",
 	.id_table	= agp_intel_pci_table,
 	.id_table	= agp_intel_pci_table,
 	.probe		= agp_intel_probe,
 	.probe		= agp_intel_probe,

+ 1 - 0
drivers/char/agp/nvidia-agp.c

@@ -398,6 +398,7 @@ static struct pci_device_id agp_nvidia_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_nvidia_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_nvidia_pci_table);
 
 
 static struct pci_driver agp_nvidia_pci_driver = {
 static struct pci_driver agp_nvidia_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-nvidia",
 	.name		= "agpgart-nvidia",
 	.id_table	= agp_nvidia_pci_table,
 	.id_table	= agp_nvidia_pci_table,
 	.probe		= agp_nvidia_probe,
 	.probe		= agp_nvidia_probe,

+ 1 - 0
drivers/char/agp/sis-agp.c

@@ -332,6 +332,7 @@ static struct pci_device_id agp_sis_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_sis_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_sis_pci_table);
 
 
 static struct pci_driver agp_sis_pci_driver = {
 static struct pci_driver agp_sis_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-sis",
 	.name		= "agpgart-sis",
 	.id_table	= agp_sis_pci_table,
 	.id_table	= agp_sis_pci_table,
 	.probe		= agp_sis_probe,
 	.probe		= agp_sis_probe,

+ 1 - 0
drivers/char/agp/sworks-agp.c

@@ -543,6 +543,7 @@ static struct pci_device_id agp_serverworks_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_serverworks_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_serverworks_pci_table);
 
 
 static struct pci_driver agp_serverworks_pci_driver = {
 static struct pci_driver agp_serverworks_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-serverworks",
 	.name		= "agpgart-serverworks",
 	.id_table	= agp_serverworks_pci_table,
 	.id_table	= agp_serverworks_pci_table,
 	.probe		= agp_serverworks_probe,
 	.probe		= agp_serverworks_probe,

+ 1 - 0
drivers/char/agp/uninorth-agp.c

@@ -658,6 +658,7 @@ static struct pci_device_id agp_uninorth_pci_table[] = {
 MODULE_DEVICE_TABLE(pci, agp_uninorth_pci_table);
 MODULE_DEVICE_TABLE(pci, agp_uninorth_pci_table);
 
 
 static struct pci_driver agp_uninorth_pci_driver = {
 static struct pci_driver agp_uninorth_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-uninorth",
 	.name		= "agpgart-uninorth",
 	.id_table	= agp_uninorth_pci_table,
 	.id_table	= agp_uninorth_pci_table,
 	.probe		= agp_uninorth_probe,
 	.probe		= agp_uninorth_probe,

+ 1 - 0
drivers/char/agp/via-agp.c

@@ -518,6 +518,7 @@ MODULE_DEVICE_TABLE(pci, agp_via_pci_table);
 
 
 
 
 static struct pci_driver agp_via_pci_driver = {
 static struct pci_driver agp_via_pci_driver = {
+	.owner		= THIS_MODULE,
 	.name		= "agpgart-via",
 	.name		= "agpgart-via",
 	.id_table	= agp_via_pci_table,
 	.id_table	= agp_via_pci_table,
 	.probe		= agp_via_probe,
 	.probe		= agp_via_probe,