Skip to content

Commit

Permalink
[MIPS] Fix return type of gt64120_irq.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 8, 2006
1 parent d864b96 commit 6554207
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arch/mips/gt64120/common/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* differently than other MIPS interrupts.
*/

static void gt64120_irq(int irq, void *dev_id)
static irqreturn_t gt64120_irq(int irq, void *dev_id)
{
unsigned int irq_src, int_high_src, irq_src_mask, int_high_src_mask;
int handled = 0;
Expand All @@ -43,6 +43,8 @@ static void gt64120_irq(int irq, void *dev_id)

GT_WRITE(GT_INTRCAUSE_OFS, 0);
GT_WRITE(GT_HINTRCAUSE_OFS, 0);

return IRQ_HANDLED;
}

/*
Expand Down

0 comments on commit 6554207

Please sign in to comment.