Home
last modified time | relevance | path

Searched refs:tx_urb (Results 1 – 19 of 19) sorted by relevance

/linux/drivers/net/usb/
H A Dipheth.c108 struct urb *tx_urb; member
125 struct urb *tx_urb = NULL; in ipheth_alloc_urbs() local
130 tx_urb = usb_alloc_urb(0, GFP_KERNEL); in ipheth_alloc_urbs()
131 if (tx_urb == NULL) in ipheth_alloc_urbs()
139 GFP_KERNEL, &tx_urb->transfer_dma); in ipheth_alloc_urbs()
149 iphone->tx_urb = tx_urb; in ipheth_alloc_urbs()
157 tx_urb->transfer_dma); in ipheth_alloc_urbs()
161 usb_free_urb(tx_urb); in ipheth_alloc_urbs()
171 iphone->tx_urb->transfer_dma); in ipheth_free_urbs()
173 usb_free_urb(iphone->tx_urb); in ipheth_free_urbs()
[all …]
H A Dcatc.c182 struct urb *tx_urb, *rx_urb, *irq_urb, *ctrl_urb; member
357 catc->tx_urb->transfer_buffer_length = catc->tx_ptr; in catc_tx_run()
358 catc->tx_urb->transfer_buffer = catc->tx_buf[catc->tx_idx]; in catc_tx_run()
359 catc->tx_urb->dev = catc->usbdev; in catc_tx_run()
361 if ((status = usb_submit_urb(catc->tx_urb, GFP_ATOMIC)) < 0) in catc_tx_run()
455 usb_unlink_urb(catc->tx_urb); in catc_tx_timeout()
744 usb_kill_urb(catc->tx_urb); in catc_stop()
806 catc->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in catc_probe()
809 if ((!catc->ctrl_urb) || (!catc->tx_urb) || in catc_probe()
831 usb_fill_bulk_urb(catc->tx_urb, usbdev, usb_sndbulkpipe(usbdev, 1), in catc_probe()
[all …]
H A Dkaweth.c216 struct urb *tx_urb; member
634 usb_kill_urb(kaweth->tx_urb); in kaweth_kill_urbs()
726 usb_fill_bulk_urb(kaweth->tx_urb, in kaweth_start_xmit()
735 if((res = usb_submit_urb(kaweth->tx_urb, GFP_ATOMIC))) in kaweth_start_xmit()
822 usb_unlink_urb(kaweth->tx_urb); in kaweth_tx_timeout()
1023 kaweth->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in kaweth_probe()
1024 if (!kaweth->tx_urb) in kaweth_probe()
1079 usb_free_urb(kaweth->tx_urb); in kaweth_probe()
1105 usb_free_urb(kaweth->tx_urb); in kaweth_disconnect()
H A Drtl8150.c137 struct urb *rx_urb, *tx_urb, *intr_urb; member
336 dev->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in alloc_all_urbs()
337 if (!dev->tx_urb) { in alloc_all_urbs()
344 usb_free_urb(dev->tx_urb); in alloc_all_urbs()
354 usb_free_urb(dev->tx_urb); in free_all_urbs()
361 usb_kill_urb(dev->tx_urb); in unlink_all_urbs()
660 usb_unlink_urb(dev->tx_urb); in rtl8150_tx_timeout()
701 usb_fill_bulk_urb(dev->tx_urb, dev->udev, usb_sndbulkpipe(dev->udev, 2), in rtl8150_start_xmit()
703 if ((res = usb_submit_urb(dev->tx_urb, GFP_ATOMIC))) { in rtl8150_start_xmit()
H A Dpegasus.c697 usb_unlink_urb(pegasus->tx_urb); in pegasus_tx_timeout()
713 usb_fill_bulk_urb(pegasus->tx_urb, pegasus->usb, in pegasus_start_xmit()
717 if ((res = usb_submit_urb(pegasus->tx_urb, GFP_ATOMIC))) { in pegasus_start_xmit()
792 usb_free_urb(pegasus->tx_urb); in free_all_urbs()
799 usb_kill_urb(pegasus->tx_urb); in unlink_all_urbs()
811 pegasus->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in alloc_urbs()
812 if (!pegasus->tx_urb) { in alloc_urbs()
818 usb_free_urb(pegasus->tx_urb); in alloc_urbs()
H A Dhso.c209 struct urb *tx_urb; member
1893 serial->tx_urb, in hso_mux_serial_write_data()
1931 usb_fill_bulk_urb(serial->tx_urb, in hso_std_serial_write_data()
1939 result = usb_submit_urb(serial->tx_urb, GFP_ATOMIC); in hso_std_serial_write_data()
2197 if (serial->tx_urb) in hso_stop_serial_device()
2198 usb_kill_urb(serial->tx_urb); in hso_stop_serial_device()
2239 usb_free_urb(serial->tx_urb); in hso_serial_common_free()
2285 serial->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in hso_serial_common_create()
2286 if (!serial->tx_urb) in hso_serial_common_create()
2288 serial->tx_urb->transfer_buffer = NULL; in hso_serial_common_create()
[all …]
H A Dpegasus.h92 struct urb *rx_urb, *tx_urb, *intr_urb; member
/linux/drivers/net/mctp/
H A Dmctp-usb.c32 struct urb *tx_urb; member
92 urb = mctp_usb->tx_urb; in mctp_usb_start_xmit()
278 usb_kill_urb(mctp_usb->tx_urb); in mctp_usb_stop()
339 dev->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in mctp_usb_probe()
341 if (!dev->tx_urb || !dev->rx_urb) { in mctp_usb_probe()
355 usb_free_urb(dev->tx_urb); in mctp_usb_probe()
366 usb_free_urb(dev->tx_urb); in mctp_usb_disconnect()
/linux/drivers/net/wireless/marvell/libertas/
H A Dif_usb.c117 usb_kill_urb(cardp->tx_urb); in if_usb_free()
120 usb_free_urb(cardp->tx_urb); in if_usb_free()
121 cardp->tx_urb = NULL; in if_usb_free()
249 if (!(cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL))) { in if_usb_probe()
429 usb_fill_bulk_urb(cardp->tx_urb, cardp->udev, in usb_tx_block()
434 cardp->tx_urb->transfer_flags |= URB_ZERO_PACKET; in usb_tx_block()
436 if ((ret = usb_submit_urb(cardp->tx_urb, GFP_ATOMIC))) { in usb_tx_block()
840 usb_kill_urb(cardp->tx_urb); in if_usb_prog_firmware()
871 usb_kill_urb(cardp->tx_urb); in if_usb_prog_firmware()
961 usb_kill_urb(cardp->tx_urb); in if_usb_suspend()
H A Dif_usb.h48 struct urb *rx_urb, *tx_urb; member
/linux/drivers/net/ieee802154/
H A Datusb.c59 struct urb *tx_urb; member
349 usb_fill_control_urb(atusb->tx_urb, usb_dev, in atusb_xmit()
353 ret = usb_submit_urb(atusb->tx_urb, GFP_ATOMIC); in atusb_xmit()
980 atusb->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in atusb_probe()
981 if (!atusb->tx_urb) in atusb_probe()
1056 usb_kill_urb(atusb->tx_urb); in atusb_probe()
1057 usb_free_urb(atusb->tx_urb); in atusb_probe()
1074 usb_kill_urb(atusb->tx_urb); in atusb_disconnect()
1075 usb_free_urb(atusb->tx_urb); in atusb_disconnect()
/linux/drivers/net/wireless/marvell/libertas_tf/
H A Dif_usb.c77 usb_kill_urb(cardp->tx_urb); in if_usb_free()
81 usb_free_urb(cardp->tx_urb); in if_usb_free()
82 cardp->tx_urb = NULL; in if_usb_free()
206 cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in if_usb_probe()
207 if (!cardp->tx_urb) in if_usb_probe()
386 urb = cardp->tx_urb; in usb_tx_block()
H A Dif_usb.h43 struct urb *rx_urb, *tx_urb, *cmd_urb; member
/linux/drivers/net/wireless/atmel/
H A Dat76c50x-usb.c1766 if (priv->tx_urb->status == -EINPROGRESS) { in at76_mac80211_tx()
1814 usb_fill_bulk_urb(priv->tx_urb, priv->udev, priv->tx_pipe, tx_buffer, in at76_mac80211_tx()
1816 ret = usb_submit_urb(priv->tx_urb, GFP_ATOMIC); in at76_mac80211_tx()
1822 priv->tx_urb, in at76_mac80211_tx()
1823 priv->tx_urb->hcpriv, priv->tx_urb->complete); in at76_mac80211_tx()
2265 priv->tx_urb = usb_alloc_urb(0, GFP_KERNEL); in at76_alloc_urbs()
2266 if (!priv->rx_urb || !priv->tx_urb) { in at76_alloc_urbs()
2407 if (priv->tx_urb) { in at76_delete_device()
2408 usb_kill_urb(priv->tx_urb); in at76_delete_device()
2409 usb_free_urb(priv->tx_urb); in at76_delete_device()
H A Dat76c50x-usb.h376 struct urb *tx_urb; /* URB for sending data */ member
/linux/drivers/net/wireless/marvell/mwifiex/
H A Dusb.c812 struct urb *tx_urb; in mwifiex_usb_construct_send_urb() local
817 tx_urb = context->urb; in mwifiex_usb_construct_send_urb()
821 usb_fill_int_urb(tx_urb, card->udev, in mwifiex_usb_construct_send_urb()
826 usb_fill_bulk_urb(tx_urb, card->udev, in mwifiex_usb_construct_send_urb()
831 tx_urb->transfer_flags |= URB_ZERO_PACKET; in mwifiex_usb_construct_send_urb()
846 if (usb_submit_urb(tx_urb, GFP_ATOMIC)) { in mwifiex_usb_construct_send_urb()
/linux/drivers/net/can/usb/etas_es58x/
H A Des581_4.c348 union es58x_urb_cmd *urb_cmd = priv->tx_urb->transfer_buffer; in es581_4_tx_can_msg()
387 priv->tx_urb->transfer_buffer_length = es58x_get_urb_cmd_len(es58x_dev, in es581_4_tx_can_msg()
H A Des58x_fd.c335 union es58x_urb_cmd *urb_cmd = priv->tx_urb->transfer_buffer; in es58x_fd_tx_can_msg()
373 priv->tx_urb->transfer_buffer_length = es58x_get_urb_cmd_len(es58x_dev, in es58x_fd_tx_can_msg()
H A Des58x_core.h262 struct urb *tx_urb; member