diff options
-rw-r--r-- | arch/sparc64/kernel/pci_psycho.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sparc64/kernel/pci_psycho.c b/arch/sparc64/kernel/pci_psycho.c index ef5fe29202c2..e205ade69cfc 100644 --- a/arch/sparc64/kernel/pci_psycho.c +++ b/arch/sparc64/kernel/pci_psycho.c | |||
@@ -744,16 +744,16 @@ static void psycho_register_error_handlers(struct pci_pbm_info *pbm) | |||
744 | * the second will just error out since we do not pass in | 744 | * the second will just error out since we do not pass in |
745 | * IRQF_SHARED. | 745 | * IRQF_SHARED. |
746 | */ | 746 | */ |
747 | err = request_irq(op->irqs[1], psycho_ue_intr, 0, | 747 | err = request_irq(op->irqs[1], psycho_ue_intr, IRQF_SHARED, |
748 | "PSYCHO_UE", pbm); | 748 | "PSYCHO_UE", pbm); |
749 | err = request_irq(op->irqs[2], psycho_ce_intr, 0, | 749 | err = request_irq(op->irqs[2], psycho_ce_intr, IRQF_SHARED, |
750 | "PSYCHO_CE", pbm); | 750 | "PSYCHO_CE", pbm); |
751 | 751 | ||
752 | /* This one, however, ought not to fail. We can just warn | 752 | /* This one, however, ought not to fail. We can just warn |
753 | * about it since the system can still operate properly even | 753 | * about it since the system can still operate properly even |
754 | * if this fails. | 754 | * if this fails. |
755 | */ | 755 | */ |
756 | err = request_irq(op->irqs[0], psycho_pcierr_intr, 0, | 756 | err = request_irq(op->irqs[0], psycho_pcierr_intr, IRQF_SHARED, |
757 | "PSYCHO_PCIERR", pbm); | 757 | "PSYCHO_PCIERR", pbm); |
758 | if (err) | 758 | if (err) |
759 | printk(KERN_WARNING "%s: Could not register PCIERR, " | 759 | printk(KERN_WARNING "%s: Could not register PCIERR, " |