Searched refs:interrupt_out_urb (Results 1 – 7 of 7) sorted by relevance
/linux-6.1.9/drivers/usb/misc/ |
D | adutux.c | 97 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() 586 dev->interrupt_out_urb, in adu_write() 594 dev->interrupt_out_urb->actual_length = bytes_to_write; in adu_write() 596 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); in adu_write() 716 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in adu_probe() 717 if (!dev->interrupt_out_urb) in adu_probe() 768 usb_poison_urb(dev->interrupt_out_urb); in adu_disconnect()
|
D | ldusb.c | 178 struct urb *interrupt_out_urb; member 198 usb_kill_urb(dev->interrupt_out_urb); in ld_usb_abort_transfers() 208 usb_free_urb(dev->interrupt_out_urb); in ld_usb_delete() 592 usb_fill_int_urb(dev->interrupt_out_urb, in ld_usb_write() 605 retval = usb_submit_urb(dev->interrupt_out_urb, GFP_KERNEL); in ld_usb_write() 716 dev->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in ld_usb_probe() 717 if (!dev->interrupt_out_urb) in ld_usb_probe() 768 usb_poison_urb(dev->interrupt_out_urb); in ld_usb_disconnect()
|
D | legousbtower.c | 213 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()
|
/linux-6.1.9/drivers/usb/serial/ |
D | cypress_m8.c | 446 if (!port->interrupt_out_urb || !port->interrupt_in_urb) { in cypress_generic_port_probe() 488 priv->write_urb_interval = port->interrupt_out_urb->interval; in cypress_generic_port_probe() 649 usb_kill_urb(port->interrupt_out_urb); in cypress_close() 706 memset(port->interrupt_out_urb->transfer_buffer, 0, in cypress_send() 765 port->interrupt_out_urb->transfer_buffer); in cypress_send() 767 usb_fill_int_urb(port->interrupt_out_urb, port->serial->dev, in cypress_send() 771 result = usb_submit_urb(port->interrupt_out_urb, GFP_ATOMIC); in cypress_send()
|
D | kobil_sct.c | 259 usb_kill_urb(port->interrupt_out_urb); in kobil_close() 335 port->interrupt_out_urb->transfer_buffer_length = length; in kobil_write() 338 result = usb_submit_urb(port->interrupt_out_urb, in kobil_write()
|
D | usb-serial.c | 646 usb_poison_urb(port->interrupt_out_urb); in usb_serial_port_poison_urbs() 659 usb_unpoison_urb(port->interrupt_out_urb); in usb_serial_port_unpoison_urbs() 670 usb_free_urb(port->interrupt_out_urb); in usb_serial_port_release() 944 port->interrupt_out_urb = usb_alloc_urb(0, GFP_KERNEL); in setup_port_interrupt_out() 945 if (!port->interrupt_out_urb) in setup_port_interrupt_out() 953 usb_fill_int_urb(port->interrupt_out_urb, udev, in setup_port_interrupt_out()
|
/linux-6.1.9/include/linux/usb/ |
D | serial.h | 79 struct urb *interrupt_out_urb; member
|