Searched refs:interrupt_out_urb (Results 1 – 7 of 7) sorted by relevance
/Linux-v4.19/drivers/usb/misc/ |
D | adutux.c | 96 struct urb *interrupt_out_urb; member 137 usb_kill_urb(dev->interrupt_out_urb); in adu_abort_transfers() 146 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()
|
D | legousbtower.c | 214 struct urb* interrupt_out_urb; member 297 usb_free_urb(dev->interrupt_out_urb); in tower_delete() 484 usb_kill_urb(dev->interrupt_out_urb); in tower_abort_transfers() 687 usb_fill_int_urb(dev->interrupt_out_urb, in tower_write() 699 retval = usb_submit_urb (dev->interrupt_out_urb, GFP_KERNEL); in tower_write() 846 dev->interrupt_out_urb = NULL; in tower_probe() 871 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in tower_probe() 872 if (!dev->interrupt_out_urb) in tower_probe()
|
D | ldusb.c | 178 struct urb *interrupt_out_urb; member 200 usb_kill_urb(dev->interrupt_out_urb); in ld_usb_abort_transfers() 212 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() 718 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in ld_usb_probe() 719 if (!dev->interrupt_out_urb) in ld_usb_probe()
|
/Linux-v4.19/drivers/usb/serial/ |
D | cypress_m8.c | 446 if (!port->interrupt_out_urb || !port->interrupt_in_urb) { in cypress_generic_port_probe() 489 priv->write_urb_interval = port->interrupt_out_urb->interval; in cypress_generic_port_probe() 652 usb_kill_urb(port->interrupt_out_urb); in cypress_close() 709 memset(port->interrupt_out_urb->transfer_buffer, 0, in cypress_send() 768 port->interrupt_out_urb->transfer_buffer); in cypress_send() 770 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev, in cypress_send() 774 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC); in cypress_send()
|
D | kobil_sct.c | 260 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()
|
D | usb-serial.c | 543 usb_poison_urb(port->interrupt_out_urb); in usb_serial_port_poison_urbs() 556 usb_unpoison_urb(port->interrupt_out_urb); in usb_serial_port_unpoison_urbs() 567 usb_free_urb(port->interrupt_out_urb); in usb_serial_port_release() 829 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in setup_port_interrupt_out() 830 if (!port->interrupt_out_urb) in setup_port_interrupt_out() 838 usb_fill_int_urb(port->interrupt_out_urb, udev, in setup_port_interrupt_out()
|
/Linux-v4.19/include/linux/usb/ |
D | serial.h | 90 struct urb *interrupt_out_urb; member
|