> P.S.: Please don't write me asking for help getting your USB ethernet
> adapter work with FreeBSD. Don't ask me when/if the driver will
> be done. Don't ask me if your favorite adapter will be supported.
> Don't ask me how to make the code work with FreeBSD 3.x.
:-))) What's wrong? Delete button ain't working?
The problem of usbd_abort_pipe is caused by the following code:
if (status == USBD_CANCELLED) {
usbd_setup_xfer(xfer, sc->aue_ep[AUE_ENDPT_RX],
sc, sc->aue_rx_buf, 1536, USBD_SHORT_XFER_OK,
USBD_NO_TIMEOUT, aue_rxeof);
usbd_transfer(xfer);
splx(s);
return;
}
USBD_CANCELLED is the error code returned when the transfer was
cancelled by abort_pipe. It might mean 'your dead, go away'.
Nick
--
[EMAIL PROTECTED]
[EMAIL PROTECTED] USB project
http://www.etla.net/~n_hibma/
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message