diff options
author | Yinghai Lu <yinghai@kernel.org> | 2014-01-02 19:05:57 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-01-03 16:31:38 -0500 |
commit | 774104399459fe4c4195bdc657a898e292334137 (patch) | |
tree | 233499014c9407d0e0f463b9edd553682eee67ca | |
parent | 92e112fdbb3cb55b43390426501a7efacd893b96 (diff) |
PCI: Convert ioapic to be builtin only, not modular
Convert pci/ioapic.c to be builtin only, with no module option, so we can
support IO-APIC hotplug. Also make it depend on X86_IO_APIC.
[bhelgaas: changelog]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r-- | drivers/pci/Kconfig | 3 | ||||
-rw-r--r-- | drivers/pci/ioapic.c | 6 |
2 files changed, 7 insertions, 2 deletions
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 | ||
107 | config PCI_IOAPIC | 107 | config 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 | ||
113 | config PCI_LABEL | 114 | config 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 | ||
116 | module_pci_driver(ioapic_driver); | 116 | static int __init ioapic_init(void) |
117 | { | ||
118 | return pci_register_driver(&ioapic_driver); | ||
119 | } | ||
120 | module_init(ioapic_init); | ||
117 | 121 | ||
118 | MODULE_LICENSE("GPL"); | 122 | MODULE_LICENSE("GPL"); |