diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-07-20 06:01:18 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-07-20 06:01:18 +0000 |
commit | 38dbf49b61c56aee551bf425e8e47e7cfa12be36 (patch) | |
tree | 17fd080c6a74d26537d9e0fb4885a59a5eb032cd /target/linux | |
parent | d6e67327a25764c5cb94f209b39346b5caf79091 (diff) | |
download | upstream-38dbf49b61c56aee551bf425e8e47e7cfa12be36.tar.gz upstream-38dbf49b61c56aee551bf425e8e47e7cfa12be36.tar.bz2 upstream-38dbf49b61c56aee551bf425e8e47e7cfa12be36.zip |
ar71xx: remove the use of the obsolete IRQF_DISABLED flag in the NAND flash driver (fixes #20125)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 46433
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |