aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/edac/mpc85xx_edac.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/edac/mpc85xx_edac.c')
-rw-r--r--drivers/edac/mpc85xx_edac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/edac/mpc85xx_edac.c b/drivers/edac/mpc85xx_edac.c
index 8f9182179a7c..f4aec2e6ef56 100644
--- a/drivers/edac/mpc85xx_edac.c
+++ b/drivers/edac/mpc85xx_edac.c
@@ -357,7 +357,7 @@ int mpc85xx_pci_err_probe(struct platform_device *op)
357 pdata->irq = irq_of_parse_and_map(op->dev.of_node, 0); 357 pdata->irq = irq_of_parse_and_map(op->dev.of_node, 0);
358 res = devm_request_irq(&op->dev, pdata->irq, 358 res = devm_request_irq(&op->dev, pdata->irq,
359 mpc85xx_pci_isr, 359 mpc85xx_pci_isr,
360 IRQF_DISABLED | IRQF_SHARED, 360 IRQF_SHARED,
361 "[EDAC] PCI err", pci); 361 "[EDAC] PCI err", pci);
362 if (res < 0) { 362 if (res < 0) {
363 printk(KERN_ERR 363 printk(KERN_ERR
@@ -633,7 +633,7 @@ static int mpc85xx_l2_err_probe(struct platform_device *op)
633 if (edac_op_state == EDAC_OPSTATE_INT) { 633 if (edac_op_state == EDAC_OPSTATE_INT) {
634 pdata->irq = irq_of_parse_and_map(op->dev.of_node, 0); 634 pdata->irq = irq_of_parse_and_map(op->dev.of_node, 0);
635 res = devm_request_irq(&op->dev, pdata->irq, 635 res = devm_request_irq(&op->dev, pdata->irq,
636 mpc85xx_l2_isr, IRQF_DISABLED, 636 mpc85xx_l2_isr, 0,
637 "[EDAC] L2 err", edac_dev); 637 "[EDAC] L2 err", edac_dev);
638 if (res < 0) { 638 if (res < 0) {
639 printk(KERN_ERR 639 printk(KERN_ERR
@@ -1133,7 +1133,7 @@ static int mpc85xx_mc_err_probe(struct platform_device *op)
1133 pdata->irq = irq_of_parse_and_map(op->dev.of_node, 0); 1133 pdata->irq = irq_of_parse_and_map(op->dev.of_node, 0);
1134 res = devm_request_irq(&op->dev, pdata->irq, 1134 res = devm_request_irq(&op->dev, pdata->irq,
1135 mpc85xx_mc_isr, 1135 mpc85xx_mc_isr,
1136 IRQF_DISABLED | IRQF_SHARED, 1136 IRQF_SHARED,
1137 "[EDAC] MC err", mci); 1137 "[EDAC] MC err", mci);
1138 if (res < 0) { 1138 if (res < 0) {
1139 printk(KERN_ERR "%s: Unable to request irq %d for " 1139 printk(KERN_ERR "%s: Unable to request irq %d for "