diff options
author | Tom Rini <trini@ti.com> | 2014-12-12 15:02:00 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-12 15:02:00 -0500 |
commit | 6983951a612aeecd906521e31de83d7fae309950 (patch) | |
tree | 3116878ff99d60e29cdfa19937accbb767bc0d37 /common | |
parent | a5a58826110eb3da2956c6b3213bd750e166d75c (diff) | |
parent | 2b8a9692f9d8a744b6a93a9bed115ca46541ca1f (diff) | |
download | u-boot-imx-6983951a612aeecd906521e31de83d7fae309950.zip u-boot-imx-6983951a612aeecd906521e31de83d7fae309950.tar.gz u-boot-imx-6983951a612aeecd906521e31de83d7fae309950.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-mmc
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_mmc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index 4286e26..96478e4 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -90,7 +90,8 @@ static void print_mmcinfo(struct mmc *mmc) puts("Capacity: "); print_size(mmc->capacity, "\n"); - printf("Bus Width: %d-bit\n", mmc->bus_width); + printf("Bus Width: %d-bit%s\n", mmc->bus_width, + mmc->ddr_mode ? " DDR" : ""); } static struct mmc *init_mmc_device(int dev, bool force_init) { |