aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2015-03-10 11:36:36 -0400
committerUlf Hansson <ulf.hansson@linaro.org>2015-03-23 09:13:47 -0400
commita4101dcb44c2adabafc5680ce1ecc109b59e2175 (patch)
tree242ab9335e95f139620f12b379c949b90e37c0da
parentb1ddaa3d066f28b626a15b15b0dc377fee2e2406 (diff)
mmc: sunxi: add MMC_CAP_SDIO_IRQ capability
When the sunxi mmc-controller code was initially merged MMC_CAP_SDIO_IRQ was not added to the host caps because of issues with some sdio wifi modules. It turns out that these issues have nothing to do with using sdio-irq support, they also happen with oob interrupts. Since the hardware supports sdio-irq everywhere, and since the one reason to not claim the capability is gone, add MMC_CAP_SDIO_IRQ to the default host caps. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r--drivers/mmc/host/sunxi-mmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sunxi-mmc.c b/drivers/mmc/host/sunxi-mmc.c
index 48ed092543bb..4d3e1ffe5508 100644
--- a/drivers/mmc/host/sunxi-mmc.c
+++ b/drivers/mmc/host/sunxi-mmc.c
@@ -1031,7 +1031,7 @@ static int sunxi_mmc_probe(struct platform_device *pdev)
1031 mmc->f_min = 400000; 1031 mmc->f_min = 400000;
1032 mmc->f_max = 50000000; 1032 mmc->f_max = 50000000;
1033 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED | 1033 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
1034 MMC_CAP_ERASE; 1034 MMC_CAP_ERASE | MMC_CAP_SDIO_IRQ;
1035 1035
1036 ret = mmc_of_parse(mmc); 1036 ret = mmc_of_parse(mmc);
1037 if (ret) 1037 if (ret)