summaryrefslogtreecommitdiff
path: root/board/gateworks
diff options
context:
space:
mode:
authorTim Harvey <tharvey@gateworks.com>2021-06-11 22:46:28 +0300
committerStefano Babic <sbabic@denx.de>2021-07-10 17:53:34 +0300
commit31273c5af52932c5a2b3e1d5e6a2e668e442d259 (patch)
tree5c7957e4a894f74a431597e23f57fe9cd78c1c26 /board/gateworks
parentb57b14dc7071e988a9d96dea7546b2d96684873d (diff)
downloadu-boot-31273c5af52932c5a2b3e1d5e6a2e668e442d259.tar.xz
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 <tharvey@gateworks.com>
Diffstat (limited to 'board/gateworks')
-rw-r--r--board/gateworks/gw_ventana/common.c1
1 files changed, 1 insertions, 0 deletions
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;
}
}