Lines Matching refs:iphone
156 static int ipheth_alloc_urbs(struct ipheth_device *iphone) in ipheth_alloc_urbs() argument
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()
182 iphone->tx_urb = tx_urb; in ipheth_alloc_urbs()
183 iphone->rx_urb = rx_urb; in ipheth_alloc_urbs()
184 iphone->tx_buf = tx_buf; in ipheth_alloc_urbs()
185 iphone->rx_buf = rx_buf; in ipheth_alloc_urbs()
189 usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, tx_buf, in ipheth_alloc_urbs()
199 static void ipheth_free_urbs(struct ipheth_device *iphone) in ipheth_free_urbs() argument
201 usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, iphone->rx_buf, in ipheth_free_urbs()
202 iphone->rx_urb->transfer_dma); in ipheth_free_urbs()
203 usb_free_coherent(iphone->udev, IPHETH_BUF_SIZE, iphone->tx_buf, in ipheth_free_urbs()
204 iphone->tx_urb->transfer_dma); in ipheth_free_urbs()
205 usb_free_urb(iphone->rx_urb); in ipheth_free_urbs()
206 usb_free_urb(iphone->tx_urb); in ipheth_free_urbs()