Commit 9a5f97ea authored by Russell King's avatar Russell King Committed by Linus Torvalds

[PATCH] stable AGP pci_device_id tables

This should fix all the AGP drivers.

pci_device_id tables can not and must not be marked discardable.  They
are used for as long as the driver is registered.
parent a12b5a72
...@@ -491,7 +491,7 @@ static void __devexit agp_ati_remove(struct pci_dev *pdev) ...@@ -491,7 +491,7 @@ static void __devexit agp_ati_remove(struct pci_dev *pdev)
agp_put_bridge(bridge); agp_put_bridge(bridge);
} }
static struct pci_device_id agp_ati_pci_table[] __initdata = { static struct pci_device_id agp_ati_pci_table[] = {
{ {
.class = (PCI_CLASS_BRIDGE_HOST << 8), .class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0, .class_mask = ~0,
......
...@@ -215,7 +215,7 @@ static void __devexit agp_sis_remove(struct pci_dev *pdev) ...@@ -215,7 +215,7 @@ static void __devexit agp_sis_remove(struct pci_dev *pdev)
agp_put_bridge(bridge); agp_put_bridge(bridge);
} }
static struct pci_device_id agp_sis_pci_table[] __initdata = { static struct pci_device_id agp_sis_pci_table[] = {
{ {
.class = (PCI_CLASS_BRIDGE_HOST << 8), .class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0, .class_mask = ~0,
......
...@@ -350,7 +350,7 @@ static void __devexit agp_uninorth_remove(struct pci_dev *pdev) ...@@ -350,7 +350,7 @@ static void __devexit agp_uninorth_remove(struct pci_dev *pdev)
agp_put_bridge(bridge); agp_put_bridge(bridge);
} }
static struct pci_device_id agp_uninorth_pci_table[] __initdata = { static struct pci_device_id agp_uninorth_pci_table[] = {
{ {
.class = (PCI_CLASS_BRIDGE_HOST << 8), .class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0, .class_mask = ~0,
......
...@@ -432,7 +432,7 @@ static void __devexit agp_via_remove(struct pci_dev *pdev) ...@@ -432,7 +432,7 @@ static void __devexit agp_via_remove(struct pci_dev *pdev)
agp_put_bridge(bridge); agp_put_bridge(bridge);
} }
static struct pci_device_id agp_via_pci_table[] __initdata = { static struct pci_device_id agp_via_pci_table[] = {
{ {
.class = (PCI_CLASS_BRIDGE_HOST << 8), .class = (PCI_CLASS_BRIDGE_HOST << 8),
.class_mask = ~0, .class_mask = ~0,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment