• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/

Lines Matching defs:hcd

36 #include <linux/usb/hcd.h>
56 static int r8a66597_get_frame(struct usb_hcd *hcd);
1292 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
1310 urb->start_frame = r8a66597_get_frame(hcd);
1620 static irqreturn_t r8a66597_irq(struct usb_hcd *hcd)
1622 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1840 static int r8a66597_start(struct usb_hcd *hcd)
1842 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1844 hcd->state = HC_STATE_RUNNING;
1848 static void r8a66597_stop(struct usb_hcd *hcd)
1850 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1899 static int r8a66597_urb_enqueue(struct usb_hcd *hcd,
1904 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1915 ret = usb_hcd_link_urb_to_ep(hcd, urb);
1963 usb_hcd_unlink_urb_from_ep(hcd, urb);
1969 static int r8a66597_urb_dequeue(struct usb_hcd *hcd, struct urb *urb,
1972 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
1978 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
1994 static void r8a66597_endpoint_disable(struct usb_hcd *hcd,
1997 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2027 static int r8a66597_get_frame(struct usb_hcd *hcd)
2029 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2103 struct usb_hcd *hcd)
2114 if (bus->busnum != hcd->self.busnum)
2122 static int r8a66597_hub_status_data(struct usb_hcd *hcd, char *buf)
2124 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2128 r8a66597_check_detect_child(r8a66597, hcd);
2157 static int r8a66597_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
2160 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2261 static int r8a66597_bus_suspend(struct usb_hcd *hcd)
2263 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2292 static int r8a66597_bus_resume(struct usb_hcd *hcd)
2294 struct r8a66597 *r8a66597 = hcd_to_r8a66597(hcd);
2378 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
2383 usb_root_hub_lost_power(hcd->self.root_hub);
2403 struct usb_hcd *hcd = r8a66597_to_hcd(r8a66597);
2406 usb_remove_hcd(hcd);
2412 usb_put_hcd(hcd);
2424 struct usb_hcd *hcd = NULL;
2467 /* initialize hcd */
2468 hcd = usb_create_hcd(&r8a66597_hc_driver, &pdev->dev, (char *)hcd_name);
2469 if (!hcd) {
2471 dev_err(&pdev->dev, "Failed to create hcd\n");
2474 r8a66597 = hcd_to_r8a66597(hcd);
2518 hcd->rsrc_start = res->start;
2520 ret = usb_add_hcd(hcd, irq, IRQF_DISABLED | irq_trigger);
2522 dev_err(&pdev->dev, "Failed to add hcd\n");
2534 usb_put_hcd(hcd);