Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c7f6d15ff2664467a2cb669abcabb5ffaf719b2d
Commit:     c7f6d15ff2664467a2cb669abcabb5ffaf719b2d
Parent:     e0ab0bb6d2b77917f4c31f157b2690602a5608f9
Author:     Thomas Gleixner <[EMAIL PROTECTED]>
AuthorDate: Tue Mar 27 09:08:26 2007 +0200
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Mar 27 09:08:08 2007 -0700

    [PATCH] i386: Fix bogus return value in hpet_next_event()
    
    The clockevents / tick management code expects an error value, when the
    event is already expired. hpet_next_event() returns 1 in that case.
    
    Fix it to return the proper -ETIME error code.
    
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/i386/kernel/hpet.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/i386/kernel/hpet.c b/arch/i386/kernel/hpet.c
index f3ab61e..76afea6 100644
--- a/arch/i386/kernel/hpet.c
+++ b/arch/i386/kernel/hpet.c
@@ -197,7 +197,7 @@ static int hpet_next_event(unsigned long delta,
        cnt += delta;
        hpet_writel(cnt, HPET_T0_CMP);
 
-       return ((long)(hpet_readl(HPET_COUNTER) - cnt ) > 0);
+       return ((long)(hpet_readl(HPET_COUNTER) - cnt ) > 0) ? -ETIME : 0;
 }
 
 /*
-
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