• Home
  • Raw
  • Download

Lines Matching refs:usb_hcd

32 static int whc_reset(struct usb_hcd *usb_hcd)  in whc_reset()  argument
44 static int whc_start(struct usb_hcd *usb_hcd) in whc_start() argument
46 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_start()
71 usb_hcd->uses_new_polling = 1; in whc_start()
72 set_bit(HCD_FLAG_POLL_RH, &usb_hcd->flags); in whc_start()
73 usb_hcd->state = HC_STATE_RUNNING; in whc_start()
88 static void whc_stop(struct usb_hcd *usb_hcd) in whc_stop() argument
90 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_stop()
107 static int whc_get_frame_number(struct usb_hcd *usb_hcd) in whc_get_frame_number() argument
117 static int whc_urb_enqueue(struct usb_hcd *usb_hcd, struct urb *urb, in whc_urb_enqueue() argument
120 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_urb_enqueue()
145 static int whc_urb_dequeue(struct usb_hcd *usb_hcd, struct urb *urb, int status) in whc_urb_dequeue() argument
147 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_urb_dequeue()
172 static void whc_endpoint_disable(struct usb_hcd *usb_hcd, in whc_endpoint_disable() argument
175 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_endpoint_disable()
190 static void whc_endpoint_reset(struct usb_hcd *usb_hcd, in whc_endpoint_reset() argument
193 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_endpoint_reset()
219 .hcd_priv_size = sizeof(struct whc) - sizeof(struct usb_hcd),
240 struct usb_hcd *usb_hcd; in whc_probe() local
245 usb_hcd = usb_create_hcd(&whc_hc_driver, dev, "whci"); in whc_probe()
246 if (usb_hcd == NULL) { in whc_probe()
251 usb_hcd->wireless = 1; in whc_probe()
252 usb_hcd->self.sg_tablesize = 2048; /* somewhat arbitrary */ in whc_probe()
254 wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_probe()
291 ret = usb_add_hcd(usb_hcd, whc->umc->irq, IRQF_SHARED); in whc_probe()
296 device_wakeup_enable(usb_hcd->self.controller); in whc_probe()
309 usb_remove_hcd(usb_hcd); in whc_probe()
316 usb_put_hcd(usb_hcd); in whc_probe()
323 struct usb_hcd *usb_hcd = dev_get_drvdata(&umc->dev); in whc_remove() local
324 struct wusbhc *wusbhc = usb_hcd_to_wusbhc(usb_hcd); in whc_remove()
327 if (usb_hcd) { in whc_remove()
330 usb_remove_hcd(usb_hcd); in whc_remove()
334 usb_put_hcd(usb_hcd); in whc_remove()