diff options
author | Abel Vesa <abel.vesa@nxp.com> | 2019-01-12 08:56:31 +0000 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2019-01-14 09:42:22 +0800 |
commit | 9b0bb07328f2375b2b6d3f8343edb1ee1ed39307 (patch) | |
tree | 734d0a1f80b404882c6fa7c1bef7d417e746367e /drivers/soc/imx/Kconfig | |
parent | e59e59b80e33b62a4c6f18435907ebd2317e2200 (diff) |
soc: imx: Break dependency on SOC_IMX8MQ for GPCv2
Since this is going to be used on more SoCs than just i.MX8MQ, make
the dependency here more generic by using ARCH_MXC instead.
Also remove the SOC_IMX7D since it is also included by the ARCH_MXC.
Signed-off-by: Abel Vesa <abel.vesa@nxp.com>
Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/soc/imx/Kconfig')
-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 2112d18dbb7b..d80f899d22f9 100644 --- a/drivers/soc/imx/Kconfig +++ b/drivers/soc/imx/Kconfig @@ -2,7 +2,7 @@ menu "i.MX SoC drivers" config IMX_GPCV2_PM_DOMAINS bool "i.MX GPCv2 PM domains" - depends on SOC_IMX7D || SOC_IMX8MQ || (COMPILE_TEST && OF) + depends on ARCH_MXC || (COMPILE_TEST && OF) depends on PM select PM_GENERIC_DOMAINS default y if SOC_IMX7D |