Home
last modified time | relevance | path

Searched refs:interrupt_out_urb (Results 1 – 7 of 7) sorted by relevance

/Linux-v5.4/drivers/usb/misc/
Dlegousbtower.c214 struct urb* interrupt_out_urb; member
295 usb_free_urb(dev->interrupt_out_urb); in tower_delete()
470 usb_kill_urb(dev->interrupt_out_urb); in tower_abort_transfers()
673 usb_fill_int_urb(dev->interrupt_out_urb, in tower_write()
685 retval = usb_submit_urb (dev->interrupt_out_urb, GFP_KERNEL); in tower_write()
833 dev->interrupt_out_urb = NULL; in tower_probe()
858 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in tower_probe()
859 if (!dev->interrupt_out_urb) in tower_probe()
941 usb_poison_urb(dev->interrupt_out_urb); in tower_disconnect()
Dadutux.c97 struct urb *interrupt_out_urb; member
138 usb_kill_urb(dev->interrupt_out_urb); in adu_abort_transfers()
147 usb_free_urb(dev->interrupt_out_urb); in adu_delete()
588 dev->interrupt_out_urb, in adu_write()
596 dev->interrupt_out_urb->actual_length = bytes_to_write; in adu_write()
598 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); in adu_write()
718 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in adu_probe()
719 if (!dev->interrupt_out_urb) in adu_probe()
770 usb_poison_urb(dev->interrupt_out_urb); in adu_disconnect()
Dldusb.c179 struct urb *interrupt_out_urb; member
199 usb_kill_urb(dev->interrupt_out_urb); in ld_usb_abort_transfers()
209 usb_free_urb(dev->interrupt_out_urb); in ld_usb_delete()
593 usb_fill_int_urb(dev->interrupt_out_urb, in ld_usb_write()
606 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); in ld_usb_write()
717 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in ld_usb_probe()
718 if (!dev->interrupt_out_urb) in ld_usb_probe()
767 usb_poison_urb(dev->interrupt_out_urb); in ld_usb_disconnect()
/Linux-v5.4/drivers/usb/serial/
Dcypress_m8.c443 if (!port->interrupt_out_urb || !port->interrupt_in_urb) { in cypress_generic_port_probe()
485 priv->write_urb_interval = port->interrupt_out_urb->interval; in cypress_generic_port_probe()
648 usb_kill_urb(port->interrupt_out_urb); in cypress_close()
705 memset(port->interrupt_out_urb->transfer_buffer, 0, in cypress_send()
764 port->interrupt_out_urb->transfer_buffer); in cypress_send()
766 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev, in cypress_send()
770 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC); in cypress_send()
Dkobil_sct.c260 usb_kill_urb(port->interrupt_out_urb); in kobil_close()
336 port->interrupt_out_urb->transfer_buffer_length = length; in kobil_write()
339 result = usb_submit_urb(port->interrupt_out_urb, in kobil_write()
Dusb-serial.c561 usb_poison_urb(port->interrupt_out_urb); in usb_serial_port_poison_urbs()
574 usb_unpoison_urb(port->interrupt_out_urb); in usb_serial_port_unpoison_urbs()
585 usb_free_urb(port->interrupt_out_urb); in usb_serial_port_release()
847 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in setup_port_interrupt_out()
848 if (!port->interrupt_out_urb) in setup_port_interrupt_out()
856 usb_fill_int_urb(port->interrupt_out_urb, udev, in setup_port_interrupt_out()
/Linux-v5.4/include/linux/usb/
Dserial.h86 struct urb *interrupt_out_urb; member