aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorDavid Cohen <david.a.cohen@linux.intel.com>2014-01-21 13:41:39 -0500
committerIngo Molnar <mingo@kernel.org>2014-01-25 03:17:32 -0500
commitedc6bc784028f2ef80dff0ff697363ff5a06e3a3 (patch)
treec52d62a482b567939784f2cd06877767b4e7c520 /arch
parent2b45e0f9f34f718725e093f4e335600811d7105a (diff)
x86/intel/mid: Fix X86_INTEL_MID dependencies
This patch fixes the following warning: warning: (X86_INTEL_MID) selects INTEL_SCU_IPC which has unmet direct dependencies (X86 && X86_PLATFORM_DEVICES && X86_INTEL_MID) It happens because when selected, X86_INTEL_MID tries to select INTEL_SCU_IPC regardless all its dependencies are met or not. This patch fixes it by adding the missing X86_PLATFORM_DEVICES dependency to X86_INTEL_MID. Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: David Cohen <david.a.cohen@linux.intel.com> Link: http://lkml.kernel.org/r/1390329699-20782-1-git-send-email-david.a.cohen@linux.intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index cb9af474dfca..3b6922ebf170 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -443,6 +443,7 @@ config X86_INTEL_MID
443 bool "Intel MID platform support" 443 bool "Intel MID platform support"
444 depends on X86_32 444 depends on X86_32
445 depends on X86_EXTENDED_PLATFORM 445 depends on X86_EXTENDED_PLATFORM
446 depends on X86_PLATFORM_DEVICES
446 depends on PCI 447 depends on PCI
447 depends on PCI_GOANY 448 depends on PCI_GOANY
448 depends on X86_IO_APIC 449 depends on X86_IO_APIC