Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/usb Fix typo. Found by Aaron Campbell <aaron%cs.dal@localhost...



details:   https://anonhg.NetBSD.org/src/rev/80cf13ab9d97
branches:  trunk
changeset: 484147:80cf13ab9d97
user:      augustss <augustss%NetBSD.org@localhost>
date:      Sun Mar 26 21:42:54 2000 +0000

description:
Fix typo.  Found by Aaron Campbell <aaron%cs.dal.ca@localhost>.

diffstat:

 sys/dev/usb/uhci.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 30920ef1697b -r 80cf13ab9d97 sys/dev/usb/uhci.c
--- a/sys/dev/usb/uhci.c        Sun Mar 26 21:35:48 2000 +0000
+++ b/sys/dev/usb/uhci.c        Sun Mar 26 21:42:54 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhci.c,v 1.96 2000/03/25 18:02:32 augustss Exp $       */
+/*     $NetBSD: uhci.c,v 1.97 2000/03/26 21:42:54 augustss Exp $       */
 /*     $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $       */
 
 /*
@@ -263,7 +263,7 @@
 static void            uhci_dump_ii __P((uhci_intr_info_t *ii));
 #endif
 
-#define UWRITE1(sc, r, x) bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x))
+#define UWRITE1(sc, r, x) bus_space_write_1((sc)->iot, (sc)->ioh, (r), (x))
 #define UWRITE2(sc, r, x) bus_space_write_2((sc)->iot, (sc)->ioh, (r), (x))
 #define UWRITE4(sc, r, x) bus_space_write_4((sc)->iot, (sc)->ioh, (r), (x))
 #define UREAD1(sc, r) bus_space_read_1((sc)->iot, (sc)->ioh, (r))



Home | Main Index | Thread Index | Old Index