Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Axel Lin and committed by
Ulf Hansson
5c87456b 889c9e04

+1 -1
+1 -1
drivers/mmc/host/wmt-sdmmc.c
··· 829 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 833 if (ret) { 834 834 dev_err(&pdev->dev, "Register DMA IRQ fail\n"); 835 835 goto fail4;