Skip to content

Commit

Permalink
[MIPS] time: Fix negated condition in cevt-r4k driver.
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 Nov 26, 2007
1 parent cfb6f26 commit aea6863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/cevt-r4k.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ void __cpuinit mips_clockevent_init(void)

clockevents_register_device(cd);

if (!cp0_timer_irq_installed)
if (cp0_timer_irq_installed)
return;

cp0_timer_irq_installed = 1;
Expand Down

0 comments on commit aea6863

Please sign in to comment.