Lines Matching refs:usbdev
234 struct usb_device *usbdev) in streamzap_init_rc_dev() argument
244 usb_make_path(usbdev, sz->phys, sizeof(sz->phys)); in streamzap_init_rc_dev()
249 usb_to_input_id(usbdev, &rdev->input_id); in streamzap_init_rc_dev()
280 struct usb_device *usbdev = interface_to_usbdev(intf); in streamzap_probe() local
317 pipe = usb_rcvintpipe(usbdev, endpoint->bEndpointAddress); in streamzap_probe()
318 maxp = usb_maxpacket(usbdev, pipe); in streamzap_probe()
328 sz->buf_in = usb_alloc_coherent(usbdev, maxp, GFP_ATOMIC, &sz->dma_in); in streamzap_probe()
339 sz->rdev = streamzap_init_rc_dev(sz, usbdev); in streamzap_probe()
354 usb_fill_int_urb(sz->urb_in, usbdev, pipe, sz->buf_in, in streamzap_probe()
369 usb_free_coherent(usbdev, maxp, sz->buf_in, sz->dma_in); in streamzap_probe()
389 struct usb_device *usbdev = interface_to_usbdev(interface); in streamzap_disconnect() local
399 usb_free_coherent(usbdev, sz->buf_in_len, sz->buf_in, sz->dma_in); in streamzap_disconnect()