diff options
author | 2020-03-16 11:09:02 +0800 | |
---|---|---|
committer | 2020-03-16 11:44:40 +0800 | |
commit | 2a52651292ad9e642d205ce2ece2686d3b3395a7 (patch) | |
tree | 9e3d1b35a9118c2263df5e184adfe1aacd5f6a13 | |
parent | firmware: imx: add COMPILE_TEST for IMX_SCU driver (diff) | |
download | wireguard-linux-2a52651292ad9e642d205ce2ece2686d3b3395a7.tar.xz wireguard-linux-2a52651292ad9e642d205ce2ece2686d3b3395a7.zip |
soc: imx: drop COMPILE_TEST for IMX_SCU_SOC
With COMPILE_TEST, there will be build error, because IMX_SCU
might be set to n, so drop COMPILE_TEST.
Suggested-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/soc/imx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/imx/Kconfig b/drivers/soc/imx/Kconfig index 70019cefa617..67aa94b2481b 100644 --- a/drivers/soc/imx/Kconfig +++ b/drivers/soc/imx/Kconfig @@ -10,7 +10,7 @@ config IMX_GPCV2_PM_DOMAINS config IMX_SCU_SOC bool "i.MX System Controller Unit SoC info support" - depends on IMX_SCU || COMPILE_TEST + depends on IMX_SCU select SOC_BUS help If you say yes here you get support for the NXP i.MX System |