aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mmc/host/dw_mmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 1532357787cb..9bbf45f8c538 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -857,10 +857,10 @@ static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
857 int_mask = mci_readl(host, INTMASK); 857 int_mask = mci_readl(host, INTMASK);
858 if (enb) { 858 if (enb) {
859 mci_writel(host, INTMASK, 859 mci_writel(host, INTMASK,
860 (int_mask | (1 << SDMMC_INT_SDIO(slot->id)))); 860 (int_mask | SDMMC_INT_SDIO(slot->id)));
861 } else { 861 } else {
862 mci_writel(host, INTMASK, 862 mci_writel(host, INTMASK,
863 (int_mask & ~(1 << SDMMC_INT_SDIO(slot->id)))); 863 (int_mask & ~SDMMC_INT_SDIO(slot->id)));
864 } 864 }
865} 865}
866 866