diff options
author | Kevin Liu <kliu5@marvell.com> | 2013-03-25 13:42:59 +0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-04-04 17:59:42 +0400 |
commit | e065162ae476f55376ba06f9e80f41b28f769938 (patch) | |
tree | 286391945029032d079f1d90eccb0baf76c338a9 /drivers/mmc/host/sdhci-pxav3.c | |
parent | 943647f6fe3aa7217d13cacac830c88455a88326 (diff) | |
download | linux-e065162ae476f55376ba06f9e80f41b28f769938.tar.xz |
mmc: sdhci-pxav3: controller should use SDCLK for timeout calculation
sdhci-pxav3 host controller used SDCLK for data timeout.
Signed-off-by: Kevin Liu <kliu5@marvell.com>
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host/sdhci-pxav3.c')
-rw-r--r-- | drivers/mmc/host/sdhci-pxav3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-pxav3.c b/drivers/mmc/host/sdhci-pxav3.c index fb0d23c148ef..1ae358e0662d 100644 --- a/drivers/mmc/host/sdhci-pxav3.c +++ b/drivers/mmc/host/sdhci-pxav3.c @@ -175,7 +175,7 @@ static const struct sdhci_ops pxav3_sdhci_ops = { }; static struct sdhci_pltfm_data sdhci_pxav3_pdata = { - .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL + .quirks = SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC | SDHCI_QUIRK_32BIT_ADMA_SIZE | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN, |