Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[MIPS] ip27-timer: fix unsigned irq < 0
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Acked-By: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Roel Kluin authored and ralfbaechle committed May 12, 2008
1 parent b618336 commit d0e7ba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/mips/sgi-ip27/ip27-timer.c
Expand Up @@ -158,7 +158,7 @@ static void rt_set_mode(enum clock_event_mode mode,
}
}

unsigned int rt_timer_irq;
int rt_timer_irq;

static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id)
{
Expand Down Expand Up @@ -219,7 +219,7 @@ static void __cpuinit hub_rt_clock_event_init(void)

static void __init hub_rt_clock_event_global_init(void)
{
unsigned int irq;
int irq;

do {
smp_wmb();
Expand Down

0 comments on commit d0e7ba0

Please sign in to comment.