summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2014-04-18 07:48:29 +0000
committerhselasky <hselasky@FreeBSD.org>2014-04-18 07:48:29 +0000
commit585ac61d0c1312ee1eecfdad265db2aa691d8558 (patch)
treeb2de78f60713697d4167c75535cf1eb257a8aaa6
parent6d543d996b00cd77406db47afe2f64b81e19f9f0 (diff)
downloadFreeBSD-src-585ac61d0c1312ee1eecfdad265db2aa691d8558.zip
FreeBSD-src-585ac61d0c1312ee1eecfdad265db2aa691d8558.tar.gz
MFC r264340:
Correct IMOD default value according to comment.
-rw-r--r--sys/dev/usb/controller/xhcireg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/xhcireg.h b/sys/dev/usb/controller/xhcireg.h
index 85d989a..a130f65 100644
--- a/sys/dev/usb/controller/xhcireg.h
+++ b/sys/dev/usb/controller/xhcireg.h
@@ -166,7 +166,7 @@
#define XHCI_IMOD_IVAL_SET(x) (((x) & 0xFFFF) << 0) /* 250ns unit */
#define XHCI_IMOD_ICNT_GET(x) (((x) >> 16) & 0xFFFF) /* 250ns unit */
#define XHCI_IMOD_ICNT_SET(x) (((x) & 0xFFFF) << 16) /* 250ns unit */
-#define XHCI_IMOD_DEFAULT 0x000003E8U /* 8000 IRQ/second */
+#define XHCI_IMOD_DEFAULT 0x000001F4U /* 8000 IRQ/second */
#define XHCI_ERSTSZ(n) (0x0028 + (0x20 * (n))) /* XHCI event ring segment table size */
#define XHCI_ERSTS_GET(x) ((x) & 0xFFFF)
#define XHCI_ERSTS_SET(x) ((x) & 0xFFFF)
OpenPOWER on IntegriCloud