Commit 5c87456b authored by Axel Lin's avatar Axel Lin Committed by Ulf Hansson

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: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 889c9e04
...@@ -829,7 +829,7 @@ static int wmt_mci_probe(struct platform_device *pdev) ...@@ -829,7 +829,7 @@ static int wmt_mci_probe(struct platform_device *pdev)
goto fail3; 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) { if (ret) {
dev_err(&pdev->dev, "Register DMA IRQ fail\n"); dev_err(&pdev->dev, "Register DMA IRQ fail\n");
goto fail4; goto fail4;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment