mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[MIPS] time: Fix negated condition in cevt-r4k driver.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
cfb6f26035
commit
aea6863944
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue