/* * PCI Bridge Error interrupt handler. Gets invoked whenever a PCI * bridge sends an error interrupt. */ static irqreturn_t pcibr_error_intr_handler(int irq, void *arg, struct pt_regs *regs) { struct pcibus_info *soft = (struct pcibus_info *)arg; if (sal_pcibr_error_interrupt(soft) < 0) { panic("pcibr_error_intr_handler(): Fatal Bridge Error"); } return IRQ_HANDLED; }
static irqreturn_t pcibr_error_intr_handler(int irq, void *arg) { struct pcibus_info *soft = arg; if (sal_pcibr_error_interrupt(soft) < 0) panic("pcibr_error_intr_handler(): Fatal Bridge Error"); return IRQ_HANDLED; }