sh: Updates for IRQ handler changes.
Trivial fixes for build breakage introduced by IRQ handler changes. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
@ -808,7 +808,7 @@ static int sci_request_irq(struct sci_port *port)
|
||||
}
|
||||
|
||||
if (request_irq(port->irqs[0], sci_mpxed_interrupt,
|
||||
SA_INTERRUPT, "sci", port)) {
|
||||
IRQF_DISABLED, "sci", port)) {
|
||||
printk(KERN_ERR "sci: Cannot allocate irq.\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
@ -817,7 +817,7 @@ static int sci_request_irq(struct sci_port *port)
|
||||
if (!port->irqs[i])
|
||||
continue;
|
||||
if (request_irq(port->irqs[i], handlers[i],
|
||||
SA_INTERRUPT, desc[i], port)) {
|
||||
IRQF_DISABLED, desc[i], port)) {
|
||||
printk(KERN_ERR "sci: Cannot allocate irq.\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
Reference in New Issue
Block a user