Skip to content

Commit 68fd77c

Browse files
arndbzhang-rui
authored andcommitted
thermal: fix INTEL_SOC_DTS_IOSF_CORE dependencies
We get a Kconfig warning when selecting this without also enabling CONFIG_PCI: warning: (X86_INTEL_LPSS && INTEL_SOC_DTS_IOSF_CORE && SND_SST_IPC_ACPI && MMC_SDHCI_ACPI && PUNIT_ATOM_DEBUG) selects IOSF_MBI which has unmet direct dependencies (PCI) This adds a new depedency. Fixes: 3a2419f ("Thermal: Intel SoC: DTS thermal use common APIs") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
1 parent 23c973f commit 68fd77c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/thermal/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ config X86_PKG_TEMP_THERMAL
342342

343343
config INTEL_SOC_DTS_IOSF_CORE
344344
tristate
345-
depends on X86
345+
depends on X86 && PCI
346346
select IOSF_MBI
347347
help
348348
This is becoming a common feature for Intel SoCs to expose the additional
@@ -352,7 +352,7 @@ config INTEL_SOC_DTS_IOSF_CORE
352352

353353
config INTEL_SOC_DTS_THERMAL
354354
tristate "Intel SoCs DTS thermal driver"
355-
depends on X86
355+
depends on X86 && PCI
356356
select INTEL_SOC_DTS_IOSF_CORE
357357
select THERMAL_WRITABLE_TRIPS
358358
help

0 commit comments

Comments
 (0)