Skip to content

Commit

Permalink
[MIPS] IP27: irq_chip startup method returns unsigned int.
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 Jul 13, 2006
1 parent a365e53 commit cc25ab0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/mips/sgi-ip27/ip27-timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,9 @@ static __init unsigned long get_m48t35_time(void)
return mktime(year, month, date, hour, min, sec);
}

static void startup_rt_irq(unsigned int irq)
static unsigned int startup_rt_irq(unsigned int irq)
{
return 0;
}

static void shutdown_rt_irq(unsigned int irq)
Expand Down

0 comments on commit cc25ab0

Please sign in to comment.