Message ID | 1451235235-31387-1-git-send-email-pbrobinson@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Eduardo Valentin |
Headers | show |
diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig index 8cc4ac6..2d33f8d 100644 --- a/drivers/thermal/Kconfig +++ b/drivers/thermal/Kconfig @@ -185,6 +185,7 @@ config HISI_THERMAL config IMX_THERMAL tristate "Temperature sensor driver for Freescale i.MX SoCs" + depends on ARCH_MXC || COMPILE_TEST depends on CPU_THERMAL depends on MFD_SYSCON depends on OF @@ -382,6 +383,7 @@ endmenu config QCOM_SPMI_TEMP_ALARM tristate "Qualcomm SPMI PMIC Temperature Alarm" + depends on ARCH_QCOM || COMPILE_TEST depends on OF && SPMI && IIO select REGMAP_SPMI help
The i.MX and QCom thermal drivers don't depend on their associated SoC, fix it so they depend on the SoC and COMPILE_TEST. Signed-off-by: Peter Robinson <pbrobinson@gmail.com> --- drivers/thermal/Kconfig | 2 ++ 1 file changed, 2 insertions(+)