summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-12-12 15:02:00 -0500
committerTom Rini <trini@ti.com>2014-12-12 15:02:00 -0500
commit6983951a612aeecd906521e31de83d7fae309950 (patch)
tree3116878ff99d60e29cdfa19937accbb767bc0d37 /common
parenta5a58826110eb3da2956c6b3213bd750e166d75c (diff)
parent2b8a9692f9d8a744b6a93a9bed115ca46541ca1f (diff)
downloadblackbird-obmc-uboot-6983951a612aeecd906521e31de83d7fae309950.tar.gz
blackbird-obmc-uboot-6983951a612aeecd906521e31de83d7fae309950.zip
Merge branch 'master' of git://git.denx.de/u-boot-mmc
Diffstat (limited to 'common')
-rw-r--r--common/cmd_mmc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index 4286e26963..96478e45c1 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)
{
OpenPOWER on IntegriCloud