summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-03-28 16:55:29 -0400
committerTom Rini <trini@ti.com>2014-03-28 16:55:29 -0400
commit0b2da7e209f4110b7c81d578336a10330e4a4404 (patch)
treece26957a2c2dc0a59d148722a1ab1a918a1dd154 /include
parent423ec7fed2e0877af412c5d787e9ad9d30f0ba5d (diff)
downloadtalos-obmc-uboot-0b2da7e209f4110b7c81d578336a10330e4a4404.tar.gz
talos-obmc-uboot-0b2da7e209f4110b7c81d578336a10330e4a4404.zip
blackfin: mmc: Correct mmc_host_is_spi and bfin_sdh.c
In the recent mmc cleanup, the mmc_host_is_spi macro was broken and bfin_sdh.c had mmc->bus_width turned into mmc_bus_width(mmc), both of which were incorrect. Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
-rw-r--r--include/mmc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mmc.h b/include/mmc.h
index 0172979f11..8a8297437b 100644
--- a/include/mmc.h
+++ b/include/mmc.h
@@ -360,7 +360,7 @@ void mmc_set_preinit(struct mmc *mmc, int preinit);
#ifdef CONFIG_GENERIC_MMC
#ifdef CONFIG_MMC_SPI
-#define mmc_host_is_spi(mmc) ((mmc)->cfg.host_caps & MMC_MODE_SPI)
+#define mmc_host_is_spi(mmc) ((mmc)->cfg->host_caps & MMC_MODE_SPI)
#else
#define mmc_host_is_spi(mmc) 0
#endif
OpenPOWER on IntegriCloud