Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 307966
b: refs/heads/master
c: 705ad04
h: refs/heads/master
v: v3
  • Loading branch information
Kyoungil Kim authored and Chris Ball committed May 17, 2012
1 parent 09e30c5 commit c949b61
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 680f1b5b216af1ae051bdf237e3ea47ba9124876
refs/heads/master: 705ad0472bd55fa38e6c594b2d6318c31e86068a
4 changes: 2 additions & 2 deletions trunk/drivers/mmc/host/dw_mmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)));
}
}

Expand Down

0 comments on commit c949b61

Please sign in to comment.