Lines Matching refs:usbdev
226 struct usb_device *usbdev) in streamzap_init_rc_dev() argument
236 usb_make_path(usbdev, sz->phys, sizeof(sz->phys)); in streamzap_init_rc_dev()
241 usb_to_input_id(usbdev, &rdev->input_id); in streamzap_init_rc_dev()
272 struct usb_device *usbdev = interface_to_usbdev(intf); in streamzap_probe() local
309 pipe = usb_rcvintpipe(usbdev, endpoint->bEndpointAddress); in streamzap_probe()
310 maxp = usb_maxpacket(usbdev, pipe); in streamzap_probe()
320 sz->buf_in = usb_alloc_coherent(usbdev, maxp, GFP_ATOMIC, &sz->dma_in); in streamzap_probe()
331 sz->rdev = streamzap_init_rc_dev(sz, usbdev); in streamzap_probe()
346 usb_fill_int_urb(sz->urb_in, usbdev, pipe, sz->buf_in, in streamzap_probe()
361 usb_free_coherent(usbdev, maxp, sz->buf_in, sz->dma_in); in streamzap_probe()
381 struct usb_device *usbdev = interface_to_usbdev(interface); in streamzap_disconnect() local
391 usb_free_coherent(usbdev, sz->buf_in_len, sz->buf_in, sz->dma_in); in streamzap_disconnect()