aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorLukas Ertl <le@FreeBSD.org>2004-06-20 15:32:19 +0000
committerLukas Ertl <le@FreeBSD.org>2004-06-20 15:32:19 +0000
commit1f6625d1f886f987ee29f056d824cdbe35f8ebe1 (patch)
tree9febeb43660323a6dae7737e16b3457952f21d84 /sys
parent56cb1e8cca78396cb5cb2bb3e16066707ed8f43f (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/ehcireg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ehcireg.h b/sys/dev/usb/ehcireg.h
index 3e86b6e4fa79f..ed3fe647a45ff 100644
--- a/sys/dev/usb/ehcireg.h
+++ b/sys/dev/usb/ehcireg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ehcireg.h,v 1.13 2001/11/23 01:16:27 augustss Exp $ */
+/* $NetBSD: ehcireg.h,v 1.15 2004/06/12 16:02:42 mycroft Exp $ */
/* $FreeBSD$ */
/*
@@ -262,7 +262,7 @@ typedef struct {
#define EHCI_QH_GET_MPL(x) (((x) >> 16) & 0x7ff) /* max packet len */
#define EHCI_QH_SET_MPL(x) ((x) << 16)
#define EHCI_QG_MPLMASK 0x07ff0000
-#define EHCI_QH_GET_CTL(x) (((x) >> 26) & 0x01) /* control endpoint */
+#define EHCI_QH_GET_CTL(x) (((x) >> 27) & 0x01) /* control endpoint */
#define EHCI_QH_CTL 0x08000000
#define EHCI_QH_GET_NRL(x) (((x) >> 28) & 0x0f) /* NAK reload */
#define EHCI_QH_SET_NRL(x) ((x) << 28)