diff options
author | Ohad Ben-Cohen <ohad@wizery.com> | 2011-04-05 10:50:15 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-05-24 20:59:56 -0400 |
commit | 0b4043d70af5871908864fa725821bc8e667542d (patch) | |
tree | 665b1a5337f4cc137d5b57a0e2c8bb7323cc522f | |
parent | eab4068795d670b065164096805cbf15a19e9690 (diff) |
mmc: quirks: wl1271 is MMC_QUIRK_NONSTD_FUNC_IF
Tell SDIO core to ignore the standard SDIO function interface
codes indicated by the wl1271. This is required because the
wl1271 erroneously indicates its first function as a standard
Bluetooth SDIO interface, and that drives btsdio mad.
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r-- | drivers/mmc/core/quirks.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/core/quirks.c b/drivers/mmc/core/quirks.c index 11118b74eb20..19573981d934 100644 --- a/drivers/mmc/core/quirks.c +++ b/drivers/mmc/core/quirks.c | |||
@@ -64,6 +64,8 @@ static const struct mmc_fixup mmc_fixup_methods[] = { | |||
64 | add_quirk_for_sdio_devices, MMC_QUIRK_BROKEN_CLK_GATING }, | 64 | add_quirk_for_sdio_devices, MMC_QUIRK_BROKEN_CLK_GATING }, |
65 | { SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271, | 65 | { SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271, |
66 | remove_quirk, MMC_QUIRK_BROKEN_CLK_GATING }, | 66 | remove_quirk, MMC_QUIRK_BROKEN_CLK_GATING }, |
67 | { SDIO_VENDOR_ID_TI, SDIO_DEVICE_ID_TI_WL1271, | ||
68 | add_quirk, MMC_QUIRK_NONSTD_FUNC_IF }, | ||
67 | { 0 } | 69 | { 0 } |
68 | }; | 70 | }; |
69 | 71 | ||