Skip to content

Commit 5c87456

Browse files
AxelLinstorulf
authored andcommitted
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>
1 parent 889c9e0 commit 5c87456

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mmc/host/wmt-sdmmc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ static int wmt_mci_probe(struct platform_device *pdev)
829829
goto fail3;
830830
}
831831

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);
833833
if (ret) {
834834
dev_err(&pdev->dev, "Register DMA IRQ fail\n");
835835
goto fail4;

0 commit comments

Comments
 (0)