Skip to content

Commit

Permalink
mmc: wmt-sdmmc: Remove deprecated IRQF_DISABLED
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Axel Lin authored and Ulf Hansson committed Jul 9, 2014
1 parent 889c9e0 commit 5c87456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mmc/host/wmt-sdmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ static int wmt_mci_probe(struct platform_device *pdev)
goto fail3;
}

ret = request_irq(dma_irq, wmt_mci_dma_isr, 32, "sdmmc", priv);
ret = request_irq(dma_irq, wmt_mci_dma_isr, 0, "sdmmc", priv);
if (ret) {
dev_err(&pdev->dev, "Register DMA IRQ fail\n");
goto fail4;
Expand Down

0 comments on commit 5c87456

Please sign in to comment.