diff options
author | Andres Salomon <dilinger@debian.org> | 2009-03-02 21:48:20 +0100 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2009-03-02 21:48:20 +0100 |
commit | a0874897b1ba106298e4303a25456a473fc40f3d (patch) | |
tree | f2cef329faca84633676f88a2c60f81e5353a48e /drivers | |
parent | f945405cdecd9e0ae3e58ff84cabd19b4522965e (diff) | |
download | linux-stable-a0874897b1ba106298e4303a25456a473fc40f3d.tar.gz linux-stable-a0874897b1ba106298e4303a25456a473fc40f3d.tar.bz2 linux-stable-a0874897b1ba106298e4303a25456a473fc40f3d.zip |
sdhci: Add NO_BUSY_IRQ quirk for Marvell CAFE host chip
As described here: http://lkml.org/lkml/2009/2/20/265
The CAFE chip is broken due to commit e809517f6fa5803a5a1cd5602.
Anton added a quirk here: http://lkml.org/lkml/2009/2/20/279 that fixes
CAFE's problem. This adds the quirk for CAFE.
Signed-off-by: Andres Salomon <dilinger@debian.org>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/host/sdhci-pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c index 8cff5f5e7f86..406da9a8d453 100644 --- a/drivers/mmc/host/sdhci-pci.c +++ b/drivers/mmc/host/sdhci-pci.c @@ -107,6 +107,7 @@ static const struct sdhci_pci_fixes sdhci_ene_714 = { static const struct sdhci_pci_fixes sdhci_cafe = { .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER | + SDHCI_QUIRK_NO_BUSY_IRQ | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL, }; |