diff options
author | Tom Rini <trini@konsulko.com> | 2020-03-31 10:07:01 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-03-31 10:07:01 -0400 |
commit | 150db4264d210f6fd4fbf5e0e9cafc135eb13c17 (patch) | |
tree | 34ab1f6c9c0eb1878ab3a2d824d47f7a73ef4ea9 /cmd | |
parent | 1104dde6e89f3d3ab07284e7c871cc33037f1198 (diff) | |
parent | 7f6b0f3357bd25c7ed23f8f5a76a99ab9a0fd398 (diff) | |
download | u-boot-150db4264d210f6fd4fbf5e0e9cafc135eb13c17.tar.gz |
Merge branch '2020-03-31-master-imports'WIP/31Mar2020
- mpc8xxx GPIO, SPI bugfixes
- Add VxWorks to FIT images
- macb ethernet driver bugfix
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |