Re: [U-Boot] [PATCH] mmc: fsl_esdhc_imx: fix config check issue when building in SPL

2019-07-15 Thread Peng Fan
> Subject: [PATCH] mmc: fsl_esdhc_imx: fix config check issue when building in > SPL > > Should use CONFIG_IS_ENABLED not IS_ENABLED for clock and regulator > drivers, CONFIG_IS_ENABLED will check the CONFIG_SPL_CLK and > CONFIG_SPL_DM_REGULATOR when building SPL. > > Signed-off-by: Ye Li > ---

Re: [U-Boot] [PATCH] mmc: fsl_esdhc_imx: fix config check issue when building in SPL

2019-07-10 Thread Bin Meng
On Thu, Jul 11, 2019 at 11:29 AM Ye Li wrote: > > Should use CONFIG_IS_ENABLED not IS_ENABLED for clock and regulator drivers, > CONFIG_IS_ENABLED will check the CONFIG_SPL_CLK and CONFIG_SPL_DM_REGULATOR > when building SPL. > > Signed-off-by: Ye Li > --- > drivers/mmc/fsl_esdhc_imx.c | 4 ++--

[U-Boot] [PATCH] mmc: fsl_esdhc_imx: fix config check issue when building in SPL

2019-07-10 Thread Ye Li
Should use CONFIG_IS_ENABLED not IS_ENABLED for clock and regulator drivers, CONFIG_IS_ENABLED will check the CONFIG_SPL_CLK and CONFIG_SPL_DM_REGULATOR when building SPL. Signed-off-by: Ye Li --- drivers/mmc/fsl_esdhc_imx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a