Commit cc7d54b0 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Bjorn Andersson

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: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent f88536f1
...@@ -81,10 +81,10 @@ config DA8XX_REMOTEPROC ...@@ -81,10 +81,10 @@ config DA8XX_REMOTEPROC
config QCOM_ADSP_PIL config QCOM_ADSP_PIL
tristate "Qualcomm ADSP Peripheral Image Loader" tristate "Qualcomm ADSP Peripheral Image Loader"
depends on OF && ARCH_QCOM depends on OF && ARCH_QCOM
depends on REMOTEPROC
depends on QCOM_SMEM depends on QCOM_SMEM
select MFD_SYSCON select MFD_SYSCON
select QCOM_MDT_LOADER select QCOM_MDT_LOADER
select REMOTEPROC
help help
Say y here to support the TrustZone based Peripherial Image Loader Say y here to support the TrustZone based Peripherial Image Loader
for the Qualcomm ADSP remote processors. for the Qualcomm ADSP remote processors.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment