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 /include/sdhci.h | |
| parent | 0d2f15f9c77a911d95100bf791a9619af900eb2f (diff) | |
| download | olio-uboot-2014.01-6cf1b17cd0af756bab5ec07cbf9f8ed13c229220.tar.xz olio-uboot-2014.01-6cf1b17cd0af756bab5ec07cbf9f8ed13c229220.zip | |
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 'include/sdhci.h')
| -rw-r--r-- | include/sdhci.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/sdhci.h b/include/sdhci.h index e84d2dc23..069093804 100644 --- a/include/sdhci.h +++ b/include/sdhci.h @@ -27,6 +27,8 @@  #define __SDHCI_HW_H  #include <asm/io.h> +#include <mmc.h> +  /*   * Controller registers   */ @@ -239,6 +241,7 @@ struct sdhci_host {  	unsigned int quirks;  	unsigned int version;  	unsigned int clock; +	struct mmc *mmc;  	const struct sdhci_ops *ops;  }; |