From: Arnd Bergmann Date: Wed, 16 Nov 2016 08:47:31 +0000 (+0100) Subject: remoteproc: adsp-pil: fix recursive dependency X-Git-Tag: v4.10-rc1~163^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cc7d54b05057acb0c6c4c57f27cfd25af823a91c;p=thirdparty%2Fkernel%2Flinux.git remoteproc: adsp-pil: fix recursive dependency The newly added driver tries to 'select' a symbol that it has an implicit dependency on, which confuses Kconfig: subsection "Kconfig recursive dependency limitations" drivers/remoteproc/Kconfig:3: symbol REMOTEPROC is selected by QCOM_ADSP_PIL As REMOTEPROC is itself user-visible, we clearly should not select it from a driver, removing the line fixes the problem. Signed-off-by: Arnd Bergmann Signed-off-by: Bjorn Andersson --- diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig index 9c41128750caf..5a0019ce75556 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig @@ -81,10 +81,10 @@ config DA8XX_REMOTEPROC config QCOM_ADSP_PIL tristate "Qualcomm ADSP Peripheral Image Loader" depends on OF && ARCH_QCOM + depends on REMOTEPROC depends on QCOM_SMEM select MFD_SYSCON select QCOM_MDT_LOADER - select REMOTEPROC help Say y here to support the TrustZone based Peripherial Image Loader for the Qualcomm ADSP remote processors.