Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/drivers/usb/misc/
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()
589 dev->interrupt_out_urb, in adu_write()
597 dev->interrupt_out_urb->actual_length = bytes_to_write; in adu_write()
599 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); in adu_write()
719 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in adu_probe()
720 if (!dev->interrupt_out_urb) in adu_probe()
771 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()
Dlegousbtower.c213 struct urb *interrupt_out_urb; member
293 usb_free_urb(dev->interrupt_out_urb); in tower_delete()
424 usb_kill_urb(dev->interrupt_out_urb); in tower_release()
625 usb_fill_int_urb(dev->interrupt_out_urb, in tower_write()
637 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); in tower_write()
785 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in tower_probe()
786 if (!dev->interrupt_out_urb) in tower_probe()
855 usb_poison_urb(dev->interrupt_out_urb); in tower_disconnect()
/kernel/linux/linux-5.10/drivers/usb/serial/
Dcypress_m8.c445 if (!port->interrupt_out_urb || !port->interrupt_in_urb) { in cypress_generic_port_probe()
487 priv->write_urb_interval = port->interrupt_out_urb->interval; in cypress_generic_port_probe()
650 usb_kill_urb(port->interrupt_out_urb); in cypress_close()
707 memset(port->interrupt_out_urb->transfer_buffer, 0, in cypress_send()
766 port->interrupt_out_urb->transfer_buffer); in cypress_send()
768 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev, in cypress_send()
772 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()
/kernel/linux/linux-5.10/include/linux/usb/
Dserial.h85 struct urb *interrupt_out_urb; member