aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2014-01-07 19:34:33 -0500
committerBjorn Helgaas <bhelgaas@google.com>2014-01-07 19:34:33 -0500
commitccb126545448136d36da8661f2941372554015d1 (patch)
tree76d44f07f2b1b9f79f6ff7045c113edeefeafa3b
parent1ecf38c8ae5fab7397f7af65a5064a040940a0a1 (diff)
parentc2a5a829e28c476880b5efc8755ab3b339fdc147 (diff)
Merge branch 'pci/misc' into next
* pci/misc: PCI: Update documentation 00-INDEX file PCI: Convert ioapic to be builtin only, not modular
-rw-r--r--Documentation/PCI/00-INDEX4
-rw-r--r--drivers/pci/Kconfig3
-rw-r--r--drivers/pci/ioapic.c6
3 files changed, 9 insertions, 4 deletions
diff --git a/Documentation/PCI/00-INDEX b/Documentation/PCI/00-INDEX
index 812b17fe3ed0..147231f1613e 100644
--- a/Documentation/PCI/00-INDEX
+++ b/Documentation/PCI/00-INDEX
@@ -2,12 +2,12 @@
2 - this file 2 - this file
3MSI-HOWTO.txt 3MSI-HOWTO.txt
4 - the Message Signaled Interrupts (MSI) Driver Guide HOWTO and FAQ. 4 - the Message Signaled Interrupts (MSI) Driver Guide HOWTO and FAQ.
5PCI-DMA-mapping.txt
6 - info for PCI drivers using DMA portably across all platforms
7PCIEBUS-HOWTO.txt 5PCIEBUS-HOWTO.txt
8 - a guide describing the PCI Express Port Bus driver 6 - a guide describing the PCI Express Port Bus driver
9pci-error-recovery.txt 7pci-error-recovery.txt
10 - info on PCI error recovery 8 - info on PCI error recovery
9pci-iov-howto.txt
10 - the PCI Express I/O Virtualization HOWTO
11pci.txt 11pci.txt
12 - info on the PCI subsystem for device driver authors 12 - info on the PCI subsystem for device driver authors
13pcieaer-howto.txt 13pcieaer-howto.txt
diff --git a/drivers/pci/Kconfig b/drivers/pci/Kconfig
index b6a99f7a9b20..893503fa1782 100644
--- a/drivers/pci/Kconfig
+++ b/drivers/pci/Kconfig
@@ -105,9 +105,10 @@ config PCI_PASID
105 If unsure, say N. 105 If unsure, say N.
106 106
107config PCI_IOAPIC 107config PCI_IOAPIC
108 tristate "PCI IO-APIC hotplug support" if X86 108 bool "PCI IO-APIC hotplug support" if X86
109 depends on PCI 109 depends on PCI
110 depends on ACPI 110 depends on ACPI
111 depends on X86_IO_APIC
111 default !X86 112 default !X86
112 113
113config PCI_LABEL 114config PCI_LABEL
diff --git a/drivers/pci/ioapic.c b/drivers/pci/ioapic.c
index 50ce68098298..2c2930ea06ad 100644
--- a/drivers/pci/ioapic.c
+++ b/drivers/pci/ioapic.c
@@ -113,6 +113,10 @@ static struct pci_driver ioapic_driver = {
113 .remove = ioapic_remove, 113 .remove = ioapic_remove,
114}; 114};
115 115
116module_pci_driver(ioapic_driver); 116static int __init ioapic_init(void)
117{
118 return pci_register_driver(&ioapic_driver);
119}
120module_init(ioapic_init);
117 121
118MODULE_LICENSE("GPL"); 122MODULE_LICENSE("GPL");