Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aea6863944efdf42b7de96e71545e0ce4c317a1f
Commit:     aea6863944efdf42b7de96e71545e0ce4c317a1f
Parent:     cfb6f26035b17d5d280ce4a6ceb041438643ba63
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 30 02:21:08 2007 +0000
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Mon Nov 26 17:26:13 2007 +0000

    [MIPS] time: Fix negated condition in cevt-r4k driver.
    
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/kernel/cevt-r4k.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/cevt-r4k.c b/arch/mips/kernel/cevt-r4k.c
index bab935a..076f52b 100644
--- a/arch/mips/kernel/cevt-r4k.c
+++ b/arch/mips/kernel/cevt-r4k.c
@@ -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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to