Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/evbarm/iq80310 Gah, correct editor mistake in last.



details:   https://anonhg.NetBSD.org/src/rev/5f02076beaa3
branches:  trunk
changeset: 525609:5f02076beaa3
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Sat Apr 13 22:42:39 2002 +0000

description:
Gah, correct editor mistake in last.

diffstat:

 sys/arch/evbarm/iq80310/iq80310_timer.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a424bfae7e18 -r 5f02076beaa3 sys/arch/evbarm/iq80310/iq80310_timer.c
--- a/sys/arch/evbarm/iq80310/iq80310_timer.c   Sat Apr 13 22:41:46 2002 +0000
+++ b/sys/arch/evbarm/iq80310/iq80310_timer.c   Sat Apr 13 22:42:39 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: iq80310_timer.c,v 1.9 2002/04/13 22:41:46 thorpej Exp $        */
+/*     $NetBSD: iq80310_timer.c,v 1.10 2002/04/13 22:42:39 thorpej Exp $       */
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -115,7 +115,7 @@
        rv  =  ((la[0] & 0x40) >> 1) | (la[0] & 0x1f);
        rv |= (((la[1] & 0x40) >> 1) | (la[1] & 0x1f)) << 6;
        rv |= (((la[2] & 0x40) >> 1) | (la[2] & 0x1f)) << 12;
-       rv |= (la[3] 0x0f) << 18;
+       rv |= (la[3] & 0x0f) << 18;
 
        return (rv);
 }



Home | Main Index | Thread Index | Old Index