aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-04-27 06:25:31 -0400
committerUlf Hansson <ulf.hansson@linaro.org>2014-07-09 05:26:08 -0400
commit5c87456b07ba278021e7dd66a32e9b4bc1acaa32 (patch)
tree71d09fb53f80947d203de4593e919fcc318a95ac
parent889c9e04f14253e9267bf72aafc298c81468c508 (diff)
mmc: wmt-sdmmc: Remove deprecated IRQF_DISABLED
It's a NOOP since 2.6.35 and it will be removed one day. This is not trivial because current code uses hard coded 32 instead of IRQF_DISABLED in the request_irq call. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r--drivers/mmc/host/wmt-sdmmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/wmt-sdmmc.c b/drivers/mmc/host/wmt-sdmmc.c
index f064bcbe0068..54181b4f6e9e 100644
--- a/drivers/mmc/host/wmt-sdmmc.c
+++ b/drivers/mmc/host/wmt-sdmmc.c
@@ -829,7 +829,7 @@ static int wmt_mci_probe(struct platform_device *pdev)
829 goto fail3; 829 goto fail3;
830 } 830 }
831 831
832 ret = request_irq(dma_irq, wmt_mci_dma_isr, 32, "sdmmc", priv); 832 ret = request_irq(dma_irq, wmt_mci_dma_isr, 0, "sdmmc", priv);
833 if (ret) { 833 if (ret) {
834 dev_err(&pdev->dev, "Register DMA IRQ fail\n"); 834 dev_err(&pdev->dev, "Register DMA IRQ fail\n");
835 goto fail4; 835 goto fail4;