Searched refs:send_req (Results 1 – 2 of 2) sorted by relevance
530 usb_bulk_req_t *send_req; in zyd_usb_bulk_pipe_send() local535 send_req = usb_alloc_bulk_req(uc->dip, len, USB_FLAGS_SLEEP); in zyd_usb_bulk_pipe_send()536 if (send_req == NULL) { in zyd_usb_bulk_pipe_send()540 send_req->bulk_len = (uint_t)len; in zyd_usb_bulk_pipe_send()541 send_req->bulk_client_private = (usb_opaque_t)&lock; in zyd_usb_bulk_pipe_send()542 send_req->bulk_attributes = USB_ATTRS_AUTOCLEARING; in zyd_usb_bulk_pipe_send()543 send_req->bulk_timeout = 5; in zyd_usb_bulk_pipe_send()544 send_req->bulk_cb = zyd_bulk_pipe_cb; in zyd_usb_bulk_pipe_send()545 send_req->bulk_exc_cb = zyd_bulk_pipe_cb; in zyd_usb_bulk_pipe_send()547 mblk = send_req->bulk_data; in zyd_usb_bulk_pipe_send()[all …]
643 usb_bulk_req_t *send_req; in uath_fw_send() local647 send_req = usb_alloc_bulk_req(sc->sc_dev, len, USB_FLAGS_SLEEP); in uath_fw_send()649 send_req->bulk_len = (int)len; in uath_fw_send()650 send_req->bulk_attributes = USB_ATTRS_AUTOCLEARING; in uath_fw_send()651 send_req->bulk_timeout = UATH_CMD_TIMEOUT; in uath_fw_send()653 mblk = send_req->bulk_data; in uath_fw_send()657 res = usb_pipe_bulk_xfer(pipe, send_req, USB_FLAGS_SLEEP); in uath_fw_send()664 usb_free_bulk_req(send_req); in uath_fw_send()1227 usb_bulk_req_t *send_req; in uath_tx_cmd_xfer() local1231 send_req = usb_alloc_bulk_req(sc->sc_dev, len, USB_FLAGS_SLEEP); in uath_tx_cmd_xfer()[all …]