diff options
Diffstat (limited to 'sys/dev/usb/if_axen.c')
-rw-r--r-- | sys/dev/usb/if_axen.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/usb/if_axen.c b/sys/dev/usb/if_axen.c index 7cad3ef7efb..d0329d308f5 100644 --- a/sys/dev/usb/if_axen.c +++ b/sys/dev/usb/if_axen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axen.c,v 1.29 2020/07/10 13:26:40 patrick Exp $ */ +/* $OpenBSD: if_axen.c,v 1.30 2020/07/31 10:49:32 mglocker Exp $ */ /* * Copyright (c) 2013 Yojiro UO <yuo@openbsd.org> @@ -1426,7 +1426,6 @@ axen_stop(struct axen_softc *sc) /* Stop transfers. */ if (sc->axen_ep[AXEN_ENDPT_RX] != NULL) { - usbd_abort_pipe(sc->axen_ep[AXEN_ENDPT_RX]); err = usbd_close_pipe(sc->axen_ep[AXEN_ENDPT_RX]); if (err) { printf("axen%d: close rx pipe failed: %s\n", @@ -1436,7 +1435,6 @@ axen_stop(struct axen_softc *sc) } if (sc->axen_ep[AXEN_ENDPT_TX] != NULL) { - usbd_abort_pipe(sc->axen_ep[AXEN_ENDPT_TX]); err = usbd_close_pipe(sc->axen_ep[AXEN_ENDPT_TX]); if (err) { printf("axen%d: close tx pipe failed: %s\n", @@ -1446,7 +1444,6 @@ axen_stop(struct axen_softc *sc) } if (sc->axen_ep[AXEN_ENDPT_INTR] != NULL) { - usbd_abort_pipe(sc->axen_ep[AXEN_ENDPT_INTR]); err = usbd_close_pipe(sc->axen_ep[AXEN_ENDPT_INTR]); if (err) { printf("axen%d: close intr pipe failed: %s\n", |