diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2004-10-31 08:29:54 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2004-10-31 08:29:54 +0000 |
commit | c86228318d4cb0442c5c6fd3f9ad723c0d9ae806 (patch) | |
tree | 449e9fc722bd78129f24f80cfcd1e6668a284441 /sys | |
parent | 61516d72a98c2a60b641a45286e235033d721150 (diff) |
from netbsd: ehci.c revision 1.83
No need to generate an interrupt at the data part of a control transfer,
it's generated by the status transfer.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/ehci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index 19fd6d25a75..6d879eb24c9 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ehci.c,v 1.26 2004/10/31 08:09:16 dlg Exp $ */ +/* $OpenBSD: ehci.c,v 1.27 2004/10/31 08:29:53 dlg Exp $ */ /* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */ /* @@ -2650,6 +2650,7 @@ ehci_device_request(usbd_xfer_handle xfer) &next, &end); if (err) goto bad3; + end->qtd.qtd_status &= htole32(~EHCI_QTD_IOC); end->nextqtd = stat; end->qtd.qtd_next = end->qtd.qtd_altnext = htole32(stat->physaddr); |