summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2020-03-31 10:07:01 -0400
committerTom Rini <trini@konsulko.com>2020-03-31 10:07:01 -0400
commit150db4264d210f6fd4fbf5e0e9cafc135eb13c17 (patch)
tree34ab1f6c9c0eb1878ab3a2d824d47f7a73ef4ea9 /cmd
parent1104dde6e89f3d3ab07284e7c871cc33037f1198 (diff)
parent7f6b0f3357bd25c7ed23f8f5a76a99ab9a0fd398 (diff)
Merge branch '2020-03-31-master-imports'
- mpc8xxx GPIO, SPI bugfixes - Add VxWorks to FIT images - macb ethernet driver bugfix
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mmc.c b/cmd/mmc.c
index 6f3cb85cc0..1860a3f2e5 100644
--- a/cmd/mmc.c
+++ b/cmd/mmc.c
@@ -264,7 +264,7 @@ static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
return CMD_RET_FAILURE;
if (!(mmc->version & MMC_VERSION_MMC)) {
- printf("It is not a EMMC device\n");
+ printf("It is not an eMMC device\n");
return CMD_RET_FAILURE;
}
if (mmc->version < MMC_VERSION_4_41) {
@@ -718,7 +718,7 @@ static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
return CMD_RET_FAILURE;
if (IS_SD(mmc)) {
- printf("It is not a EMMC device\n");
+ printf("It is not an eMMC device\n");
return CMD_RET_FAILURE;
}