diff options
author | 2005-03-06 05:18:34 +0000 | |
---|---|---|
committer | 2005-03-06 05:18:34 +0000 | |
commit | 6c9c7973e48ebcc5c4d6e5f01be79c4e97358d2d (patch) | |
tree | 9fd8afd0785607aa15caf8381b2c9dc10540d4a2 | |
parent | In [eo]hci_waitintr, xfer->timeout is in ms, not hz. (diff) | |
download | wireguard-openbsd-6c9c7973e48ebcc5c4d6e5f01be79c4e97358d2d.tar.xz wireguard-openbsd-6c9c7973e48ebcc5c4d6e5f01be79c4e97358d2d.zip |
Fix incorrect comment about interrupt threshold control level.
ok dlg@
-rw-r--r-- | sys/dev/usb/ehci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index e678661acd4..82159709010 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci.c,v 1.36 2005/03/06 05:12:00 pascoe Exp $ */ +/* $OpenBSD: ehci.c,v 1.37 2005/03/06 05:18:34 pascoe Exp $ */ /* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */ /* @@ -495,7 +495,7 @@ ehci_init(ehci_softc_t *sc) /* Turn on controller */ EOWRITE4(sc, EHCI_USBCMD, - EHCI_CMD_ITC_2 | /* 8 microframes */ + EHCI_CMD_ITC_2 | /* 2 microframes */ (EOREAD4(sc, EHCI_USBCMD) & EHCI_CMD_FLS_M) | EHCI_CMD_ASE | EHCI_CMD_PSE | |