Commit 5c43cbdf authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Borislav Petkov

{mv64x60,ppc4xx}_edac,: Remove deprecated IRQF_DISABLED

It's a NOOP since 2.6.35.
Signed-off-by: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Link: http://lkml.kernel.org/r/1412159043-7348-1-git-send-email-michael.opdenacker@free-electrons.comSigned-off-by: default avatarBorislav Petkov <bp@suse.de>
parent 4cfc3a40
...@@ -178,7 +178,7 @@ static int mv64x60_pci_err_probe(struct platform_device *pdev) ...@@ -178,7 +178,7 @@ static int mv64x60_pci_err_probe(struct platform_device *pdev)
res = devm_request_irq(&pdev->dev, res = devm_request_irq(&pdev->dev,
pdata->irq, pdata->irq,
mv64x60_pci_isr, mv64x60_pci_isr,
IRQF_DISABLED, 0,
"[EDAC] PCI err", "[EDAC] PCI err",
pci); pci);
if (res < 0) { if (res < 0) {
...@@ -345,7 +345,7 @@ static int mv64x60_sram_err_probe(struct platform_device *pdev) ...@@ -345,7 +345,7 @@ static int mv64x60_sram_err_probe(struct platform_device *pdev)
res = devm_request_irq(&pdev->dev, res = devm_request_irq(&pdev->dev,
pdata->irq, pdata->irq,
mv64x60_sram_isr, mv64x60_sram_isr,
IRQF_DISABLED, 0,
"[EDAC] SRAM err", "[EDAC] SRAM err",
edac_dev); edac_dev);
if (res < 0) { if (res < 0) {
...@@ -540,7 +540,7 @@ static int mv64x60_cpu_err_probe(struct platform_device *pdev) ...@@ -540,7 +540,7 @@ static int mv64x60_cpu_err_probe(struct platform_device *pdev)
res = devm_request_irq(&pdev->dev, res = devm_request_irq(&pdev->dev,
pdata->irq, pdata->irq,
mv64x60_cpu_isr, mv64x60_cpu_isr,
IRQF_DISABLED, 0,
"[EDAC] CPU err", "[EDAC] CPU err",
edac_dev); edac_dev);
if (res < 0) { if (res < 0) {
...@@ -800,7 +800,7 @@ static int mv64x60_mc_err_probe(struct platform_device *pdev) ...@@ -800,7 +800,7 @@ static int mv64x60_mc_err_probe(struct platform_device *pdev)
res = devm_request_irq(&pdev->dev, res = devm_request_irq(&pdev->dev,
pdata->irq, pdata->irq,
mv64x60_mc_isr, mv64x60_mc_isr,
IRQF_DISABLED, 0,
"[EDAC] MC err", "[EDAC] MC err",
mci); mci);
if (res < 0) { if (res < 0) {
......
...@@ -1120,7 +1120,7 @@ static int ppc4xx_edac_register_irq(struct platform_device *op, ...@@ -1120,7 +1120,7 @@ static int ppc4xx_edac_register_irq(struct platform_device *op,
status = request_irq(ded_irq, status = request_irq(ded_irq,
ppc4xx_edac_isr, ppc4xx_edac_isr,
IRQF_DISABLED, 0,
"[EDAC] MC ECCDED", "[EDAC] MC ECCDED",
mci); mci);
...@@ -1134,7 +1134,7 @@ static int ppc4xx_edac_register_irq(struct platform_device *op, ...@@ -1134,7 +1134,7 @@ static int ppc4xx_edac_register_irq(struct platform_device *op,
status = request_irq(sec_irq, status = request_irq(sec_irq,
ppc4xx_edac_isr, ppc4xx_edac_isr,
IRQF_DISABLED, 0,
"[EDAC] MC ECCSEC", "[EDAC] MC ECCSEC",
mci); mci);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment