rockchip: Avoid using MMC code when not booting from MMC
This saves some code space in SPL which is useful on jerry. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
5fd6badbd2
commit
1e724f8ea8
|
@ -113,6 +113,7 @@ static void configure_l2ctlr(void)
|
||||||
|
|
||||||
static int configure_emmc(struct udevice *pinctrl)
|
static int configure_emmc(struct udevice *pinctrl)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_SPL_MMC_SUPPORT
|
||||||
struct gpio_desc desc;
|
struct gpio_desc desc;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -142,6 +143,7 @@ static int configure_emmc(struct udevice *pinctrl)
|
||||||
debug("gpio value ret=%d\n", ret);
|
debug("gpio value ret=%d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue