diff options
| author | Joakim Tjernlund <Joakim.Tjernlund@transmode.se> | 2015-07-22 16:44:26 +0200 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2016-08-26 19:58:41 +0200 |
| commit | 24ccefbead8e786b8161212f12e3124052a52522 (patch) | |
| tree | 76b6e86749f294cd54242a4fc356ff25f85ed2b4 | |
| parent | 2a9323896725e9cec361c048a4b7525950f85168 (diff) | |
mmc: sdhci-esdhc: Make 8BIT bus work
commit 8e91125ff3f57f15c6568e2a6d32743b3f7815e4 upstream.
Support for 8BIT bus with was added some time ago to sdhci-esdhc but
then missed to remove the 8BIT from the reserved bit mask which made
8BIT non functional.
Fixes: 66b50a00992d ("mmc: esdhc: Add support for 8-bit bus width and..")
Signed-off-by: Joakim Tjernlund <joakim.tjernlund@transmode.se>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stefan Guendhoer <stefan@guendhoer.com>
| -rw-r--r-- | drivers/mmc/host/sdhci-esdhc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-esdhc.h b/drivers/mmc/host/sdhci-esdhc.h index d25f9ab9a..d33bb9522 100644 --- a/drivers/mmc/host/sdhci-esdhc.h +++ b/drivers/mmc/host/sdhci-esdhc.h @@ -40,7 +40,7 @@ #define ESDHC_DMA_SYSCTL 0x40c #define ESDHC_DMA_SNOOP 0x00000040 -#define ESDHC_HOST_CONTROL_RES 0x05 +#define ESDHC_HOST_CONTROL_RES 0x01 static inline void esdhc_set_clock(struct sdhci_host *host, unsigned int clock) { |
