From: Felix Fietkau Date: Mon, 20 Jul 2015 06:01:18 +0000 (+0000) Subject: ar71xx: remove the use of the obsolete IRQF_DISABLED flag in the NAND flash driver... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=4a3e8b09ad9e3fe71cbea6c7da7b2bb344adf83b ar71xx: remove the use of the obsolete IRQF_DISABLED flag in the NAND flash driver (fixes #20125) Signed-off-by: Felix Fietkau SVN-Revision: 46433 --- diff --git a/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c b/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c index 8968129d4f..90ba03a735 100644 --- a/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c +++ b/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c @@ -1376,7 +1376,7 @@ ar934x_nfc_probe(struct platform_device *pdev) } init_waitqueue_head(&nfc->irq_waitq); - ret = request_irq(nfc->irq, ar934x_nfc_irq_handler, IRQF_DISABLED, + ret = request_irq(nfc->irq, ar934x_nfc_irq_handler, 0, dev_name(&pdev->dev), nfc); if (ret) { dev_err(&pdev->dev, "requast_irq failed, err:%d\n", ret);