diff options
author | Sinan Kaya <okaya@kernel.org> | 2019-01-21 18:19:58 -0500 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2019-01-22 11:06:28 -0500 |
commit | 625210cfa6c0c26ea422f655bf68288176f174e6 (patch) | |
tree | 7a7fed6ee4e15866d02a545dd01946407b9548d0 | |
parent | fc24d75a7f91837d7918e40719575951820b2b8f (diff) |
x86/Kconfig: Select PCI_LOCKLESS_CONFIG if PCI is enabled
After commit
5d32a66541c4 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set")
dependencies on CONFIG_PCI that previously were satisfied implicitly
through dependencies on CONFIG_ACPI have to be specified directly.
PCI_LOCKLESS_CONFIG depends on PCI but this dependency has not been
mentioned in the Kconfig so add an explicit dependency here and fix
WARNING: unmet direct dependencies detected for PCI_LOCKLESS_CONFIG
Depends on [n]: PCI [=n]
Selected by [y]:
- X86 [=y]
Fixes: 5d32a66541c46 ("PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set")
Signed-off-by: Sinan Kaya <okaya@kernel.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-acpi@vger.kernel.org
Cc: x86-ml <x86@kernel.org>
Link: https://lkml.kernel.org/r/20190121231958.28255-2-okaya@kernel.org
-rw-r--r-- | arch/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 4b4a7f32b68e..26387c7bf305 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -198,7 +198,7 @@ config X86 | |||
198 | select IRQ_FORCED_THREADING | 198 | select IRQ_FORCED_THREADING |
199 | select NEED_SG_DMA_LENGTH | 199 | select NEED_SG_DMA_LENGTH |
200 | select PCI_DOMAINS if PCI | 200 | select PCI_DOMAINS if PCI |
201 | select PCI_LOCKLESS_CONFIG | 201 | select PCI_LOCKLESS_CONFIG if PCI |
202 | select PERF_EVENTS | 202 | select PERF_EVENTS |
203 | select RTC_LIB | 203 | select RTC_LIB |
204 | select RTC_MC146818_LIB | 204 | select RTC_MC146818_LIB |