aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDamien Bergamini <damien@FreeBSD.org>2005-11-29 21:07:32 +0000
committerDamien Bergamini <damien@FreeBSD.org>2005-11-29 21:07:32 +0000
commit635df8de16068f22cd1fe5fce2ca2a855af43a7d (patch)
tree49c6e824a2b65fdfd2ea8c852914ea1ccc4f803d /sys
parent3d5dc80e4dbb5e421c2acc5ac6da28d987f423f1 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/if_ural.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_ural.c b/sys/dev/usb/if_ural.c
index cd297e9e68825..6f1cd83d6029b 100644
--- a/sys/dev/usb/if_ural.c
+++ b/sys/dev/usb/if_ural.c
@@ -872,7 +872,7 @@ ural_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
USBDEVNAME(sc->sc_dev), usbd_errstr(status));
if (status == USBD_STALLED)
- usbd_clear_endpoint_stall(sc->sc_rx_pipeh);
+ usbd_clear_endpoint_stall_async(sc->sc_rx_pipeh);
ifp->if_oerrors++;
return;
@@ -911,7 +911,7 @@ ural_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
return;
if (status == USBD_STALLED)
- usbd_clear_endpoint_stall(sc->sc_rx_pipeh);
+ usbd_clear_endpoint_stall_async(sc->sc_rx_pipeh);
goto skip;
}