diff options
author | Lei Wen <leiwen@marvell.com> | 2011-10-08 04:14:56 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2011-11-03 02:14:59 -0500 |
commit | 6cf1b17cd0af756bab5ec07cbf9f8ed13c229220 (patch) | |
tree | 9f103260795aa500ebacf2b90f1b3a319bb44272 /drivers | |
parent | 0d2f15f9c77a911d95100bf791a9619af900eb2f (diff) | |
download | u-boot-imx-6cf1b17cd0af756bab5ec07cbf9f8ed13c229220.zip u-boot-imx-6cf1b17cd0af756bab5ec07cbf9f8ed13c229220.tar.gz u-boot-imx-6cf1b17cd0af756bab5ec07cbf9f8ed13c229220.tar.bz2 |
mmc: sdhci: add mmc structure for host
So that sdhci host would tell in the driver that the mmc current
attributes.
Signed-off-by: Lei Wen <leiwen@marvell.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/sdhci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index 4a92453..31c738e 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c @@ -377,6 +377,7 @@ int add_sdhci(struct sdhci_host *host, u32 max_clk, u32 min_clk) } mmc->priv = host; + host->mmc = mmc; sprintf(mmc->name, "%s", host->name); mmc->send_cmd = sdhci_send_command; |