From: Tim Harvey Date: Fri, 11 Jun 2021 19:46:28 +0000 (-0700) Subject: imx: ventana: display 'none' for MMC if board does not have it X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=31273c5af52932c5a2b3e1d5e6a2e668e442d259;p=u-boot.git imx: ventana: display 'none' for MMC if board does not have it print 'None' instead of just a blank line if nothing is detected: MMC: None Signed-off-by: Tim Harvey --- diff --git a/board/gateworks/gw_ventana/common.c b/board/gateworks/gw_ventana/common.c index adbc6791b3..c07eb627a2 100644 --- a/board/gateworks/gw_ventana/common.c +++ b/board/gateworks/gw_ventana/common.c @@ -1758,6 +1758,7 @@ int board_mmc_init(struct bd_info *bis) return fsl_esdhc_initialize(bis, &usdhc_cfg[0]); default: /* doesn't have MMC */ + printf("None"); return -1; } }