From c949b61c92d00a9fab307aa5e2a71028959bdc1d Mon Sep 17 00:00:00 2001 From: Kyoungil Kim Date: Mon, 14 May 2012 17:38:48 +0900 Subject: [PATCH] --- yaml --- r: 307966 b: refs/heads/master c: 705ad0472bd55fa38e6c594b2d6318c31e86068a h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/mmc/host/dw_mmc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 3ffab4588b44..869f5c6b8805 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 680f1b5b216af1ae051bdf237e3ea47ba9124876 +refs/heads/master: 705ad0472bd55fa38e6c594b2d6318c31e86068a diff --git a/trunk/drivers/mmc/host/dw_mmc.c b/trunk/drivers/mmc/host/dw_mmc.c index 1532357787cb..9bbf45f8c538 100644 --- a/trunk/drivers/mmc/host/dw_mmc.c +++ b/trunk/drivers/mmc/host/dw_mmc.c @@ -857,10 +857,10 @@ static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb) int_mask = mci_readl(host, INTMASK); if (enb) { mci_writel(host, INTMASK, - (int_mask | (1 << SDMMC_INT_SDIO(slot->id)))); + (int_mask | SDMMC_INT_SDIO(slot->id))); } else { mci_writel(host, INTMASK, - (int_mask & ~(1 << SDMMC_INT_SDIO(slot->id)))); + (int_mask & ~SDMMC_INT_SDIO(slot->id))); } }