diff options
author | Barry Song <Baohua.Song@csr.com> | 2015-08-12 06:59:33 +0000 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2015-08-27 14:50:52 +0200 |
commit | 1880d8f6fbb01a16404dee7167621dc09b5f1d35 (patch) | |
tree | b5e3708ca1f7eaaf1668193d72ec42e3edfb2d49 /drivers/mmc | |
parent | b5b4ff0a633910b2b9dca7915fd6ab17aa10dc3e (diff) | |
download | linux-1880d8f6fbb01a16404dee7167621dc09b5f1d35.tar.gz linux-1880d8f6fbb01a16404dee7167621dc09b5f1d35.tar.bz2 linux-1880d8f6fbb01a16404dee7167621dc09b5f1d35.zip |
mmc: sdhci-sirf: corrent quirk according to real chips
the current quirk set is for an old FPGA, and this patch corrects
quirks according to real SoC.
Signed-off-by: Barry Song <Baohua.Song@csr.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-sirf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci-sirf.c b/drivers/mmc/host/sdhci-sirf.c index 0110bae25b7e..884294576356 100644 --- a/drivers/mmc/host/sdhci-sirf.c +++ b/drivers/mmc/host/sdhci-sirf.c @@ -161,8 +161,8 @@ static struct sdhci_pltfm_data sdhci_sirf_pdata = { .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN | - SDHCI_QUIRK_INVERTED_WRITE_PROTECT | - SDHCI_QUIRK_DELAY_AFTER_POWER, + SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS, + .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN, }; static int sdhci_sirf_probe(struct platform_device *pdev) |