Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=23e8bc200c3bbbd6eae1128e9095a3968954af2e
Commit:     23e8bc200c3bbbd6eae1128e9095a3968954af2e
Parent:     b1d08ac064268d0ae2281e98bf5e82627e0f0c56
Author:     David S. Miller <[EMAIL PROTECTED]>
AuthorDate: Sat Oct 27 22:33:33 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Oct 31 15:30:49 2007 -0700

    [SPARC64]: Fix bogus '&' conditinal in set_rtc_mmss().
    
    We're using '&' instead of '&&'.
    
    Noticed by Roel Kluin.
    
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 arch/sparc64/kernel/time.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/sparc64/kernel/time.c b/arch/sparc64/kernel/time.c
index cd8c740..a2cf955 100644
--- a/arch/sparc64/kernel/time.c
+++ b/arch/sparc64/kernel/time.c
@@ -1070,7 +1070,7 @@ static int set_rtc_mmss(unsigned long nowtime)
         * Not having a register set can lead to trouble.
         * Also starfire doesn't have a tod clock.
         */
-       if (!mregs && !dregs & !bregs)
+       if (!mregs && !dregs && !bregs)
                return -1;
 
        if (mregs) {
-
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