From 6f18d64316dd4f665666a3acb4860e58d09da339 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Tue, 21 Sep 2010 17:51:05 -0700 Subject: [PATCH] mmc: host: sdhci: Prevent IRQ capability from being set if quirk is set Change-Id: I18a622844a69ed00fee798786c28c75d10ba7c81 Signed-off-by: Colin Cross --- drivers/mmc/host/sdhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 0a544d79252e..5d0792dc6890 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1849,7 +1849,7 @@ int sdhci_add_host(struct sdhci_host *host) else mmc->f_min = host->max_clk / 256; mmc->f_max = host->max_clk; - mmc->caps |= MMC_CAP_SDIO_IRQ; + mmc->caps = 0; if (host->quirks & SDHCI_QUIRK_8_BIT_DATA) mmc->caps |= MMC_CAP_8_BIT_DATA; -- 2.34.1