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 in tailp bit defines. From Nick Hibma.



details:   https://anonhg.NetBSD.org/src/rev/1114082338c0
branches:  trunk
changeset: 481388:1114082338c0
user:      augustss <augustss%NetBSD.org@localhost>
date:      Fri Jan 28 00:11:38 2000 +0000

description:
Fix typo in tailp bit defines.  From Nick Hibma.

diffstat:

 sys/dev/usb/ohcireg.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 142f6306e788 -r 1114082338c0 sys/dev/usb/ohcireg.h
--- a/sys/dev/usb/ohcireg.h     Fri Jan 28 00:09:19 2000 +0000
+++ b/sys/dev/usb/ohcireg.h     Fri Jan 28 00:11:38 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ohcireg.h,v 1.11 2000/01/16 10:35:24 augustss Exp $    */
+/*     $NetBSD: ohcireg.h,v 1.12 2000/01/28 00:11:38 augustss Exp $    */
 /*     $FreeBSD: src/sys/dev/usb/ohcireg.h,v 1.8 1999/11/17 22:33:40 n_hibma Exp $     */
 
 
@@ -163,8 +163,8 @@
 #define OHCI_ED_SET_MAXP(s)    ((s) << 16)
 #define OHCI_ED_MAXPMASK       (0x7ff << 16)
        ohci_physaddr_t ed_tailp;
-#define OHCI_HALTED            0x00000002
-#define OHCI_TOGGLECARRY       0x00000001
+#define OHCI_HALTED            0x00000001
+#define OHCI_TOGGLECARRY       0x00000002
 #define OHCI_TAILMASK          0xfffffffc
        ohci_physaddr_t ed_headp;
        ohci_physaddr_t ed_nexted;



Home | Main Index | Thread Index | Old Index