Lines Matching refs:udev
140 struct usb_device *udev; member
171 tx_buf = usb_alloc_coherent(iphone->udev, IPHETH_BUF_SIZE, in ipheth_alloc_urbs()
176 rx_buf = usb_alloc_coherent(iphone->udev, IPHETH_BUF_SIZE, in ipheth_alloc_urbs()
189 usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, tx_buf, in ipheth_alloc_urbs()
201 usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, iphone->rx_buf, in ipheth_free_urbs()
203 usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, iphone->tx_buf, in ipheth_free_urbs()
289 struct usb_device *udev = dev->udev; in ipheth_carrier_set() local
292 retval = usb_control_msg(udev, in ipheth_carrier_set()
293 usb_rcvctrlpipe(udev, IPHETH_CTRL_ENDP), in ipheth_carrier_set()
325 struct usb_device *udev = dev->udev; in ipheth_get_macaddr() local
329 retval = usb_control_msg(udev, in ipheth_get_macaddr()
330 usb_rcvctrlpipe(udev, IPHETH_CTRL_ENDP), in ipheth_get_macaddr()
356 struct usb_device *udev = dev->udev; in ipheth_rx_submit() local
359 usb_fill_bulk_urb(dev->rx_urb, udev, in ipheth_rx_submit()
360 usb_rcvbulkpipe(udev, dev->bulk_in), in ipheth_rx_submit()
376 struct usb_device *udev = dev->udev; in ipheth_open() local
379 usb_set_interface(udev, IPHETH_INTFNUM, IPHETH_ALT_INTFNUM); in ipheth_open()
406 struct usb_device *udev = dev->udev; in ipheth_tx() local
421 usb_fill_bulk_urb(dev->tx_urb, udev, in ipheth_tx()
422 usb_sndbulkpipe(udev, dev->bulk_out), in ipheth_tx()
474 struct usb_device *udev = interface_to_usbdev(intf); in ipheth_probe() local
491 dev->udev = udev; in ipheth_probe()