Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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;