
This converts 2 usages of this option to the non-SPL form, since there is no SPL_IMX_RDC defined in Kconfig
Signed-off-by: Simon Glass sjg@chromium.org ---
arch/arm/mach-imx/mx7/soc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-imx/mx7/soc.c b/arch/arm/mach-imx/mx7/soc.c index 02af0d568f2..550e392550e 100644 --- a/arch/arm/mach-imx/mx7/soc.c +++ b/arch/arm/mach-imx/mx7/soc.c @@ -68,7 +68,7 @@ U_BOOT_DRVINFO(imx7_thermal) = { }; #endif
-#if CONFIG_IS_ENABLED(IMX_RDC) +#if IS_ENABLED(CONFIG_IMX_RDC) /* * In current design, if any peripheral was assigned to both A7 and M4, * it will receive ipg_stop or ipg_wait when any of the 2 platforms enter @@ -316,7 +316,7 @@ int arch_cpu_init(void)
init_cpu_basic();
-#if CONFIG_IS_ENABLED(IMX_RDC) +#if IS_ENABLED(CONFIG_IMX_RDC) isolate_resource(); #endif