Commit 99bc8497 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] irqs: sym2

update sym2 for new IRQ API
parent bd7e7469
......@@ -1009,7 +1009,7 @@ int sym53c8xx_queue_command (Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *))
/*
* Linux entry point of the interrupt handler.
*/
static void sym53c8xx_intr(int irq, void *dev_id, struct pt_regs * regs)
static irqreturn_t sym53c8xx_intr(int irq, void *dev_id, struct pt_regs * regs)
{
unsigned long flags;
hcb_p np = (hcb_p) dev_id;
......@@ -1029,6 +1029,7 @@ static void sym53c8xx_intr(int irq, void *dev_id, struct pt_regs * regs)
SYM_UNLOCK_HCB(np, flags);
if (DEBUG_FLAGS & DEBUG_TINY) printf_debug ("]\n");
return IRQ_HANDLED;
}
/*
......
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