diff options
author | Yinghai Lu <yinghai@kernel.org> | 2014-01-02 16:05:57 -0800 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-01-03 14:31:38 -0700 |
commit | 774104399459fe4c4195bdc657a898e292334137 (patch) | |
tree | 233499014c9407d0e0f463b9edd553682eee67ca /drivers/pci/Kconfig | |
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>
Diffstat (limited to 'drivers/pci/Kconfig')
-rw-r--r-- | drivers/pci/Kconfig | 3 |
1 files changed, 2 insertions, 1 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 If unsure, say N. config PCI_IOAPIC - tristate "PCI IO-APIC hotplug support" if X86 + bool "PCI IO-APIC hotplug support" if X86 depends on PCI depends on ACPI + depends on X86_IO_APIC default !X86 config PCI_LABEL |