diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-11-16 03:47:31 -0500 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2016-11-17 01:20:35 -0500 |
commit | cc7d54b05057acb0c6c4c57f27cfd25af823a91c (patch) | |
tree | 53e32983d9f87527d238e153886ec9a154e32f3d | |
parent | f88536f1a5dcf9a3964a48c0374ca5061533bc42 (diff) |
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 <arnd@arndb.de>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
-rw-r--r-- | drivers/remoteproc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig index 9c41128750ca..5a0019ce7555 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig | |||
@@ -81,10 +81,10 @@ config DA8XX_REMOTEPROC | |||
81 | config QCOM_ADSP_PIL | 81 | config QCOM_ADSP_PIL |
82 | tristate "Qualcomm ADSP Peripheral Image Loader" | 82 | tristate "Qualcomm ADSP Peripheral Image Loader" |
83 | depends on OF && ARCH_QCOM | 83 | depends on OF && ARCH_QCOM |
84 | depends on REMOTEPROC | ||
84 | depends on QCOM_SMEM | 85 | depends on QCOM_SMEM |
85 | select MFD_SYSCON | 86 | select MFD_SYSCON |
86 | select QCOM_MDT_LOADER | 87 | select QCOM_MDT_LOADER |
87 | select REMOTEPROC | ||
88 | help | 88 | help |
89 | Say y here to support the TrustZone based Peripherial Image Loader | 89 | Say y here to support the TrustZone based Peripherial Image Loader |
90 | for the Qualcomm ADSP remote processors. | 90 | for the Qualcomm ADSP remote processors. |