Home
last modified time | relevance | path

Searched refs:phy_roothub (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/drivers/usb/core/
H A Dphy.c62 phy_roothub = devm_kzalloc(dev, sizeof(*phy_roothub), GFP_KERNEL); in usb_phy_roothub_alloc()
63 if (!phy_roothub) in usb_phy_roothub_alloc()
74 return phy_roothub; in usb_phy_roothub_alloc()
84 if (!phy_roothub) in usb_phy_roothub_init()
87 head = &phy_roothub->list; in usb_phy_roothub_init()
111 if (!phy_roothub) in usb_phy_roothub_exit()
114 head = &phy_roothub->list; in usb_phy_roothub_exit()
133 if (!phy_roothub) in usb_phy_roothub_set_mode()
160 if (!phy_roothub) in usb_phy_roothub_calibrate()
181 if (!phy_roothub) in usb_phy_roothub_power_on()
[all …]
H A Dphy.h16 int usb_phy_roothub_init(struct usb_phy_roothub *phy_roothub);
17 int usb_phy_roothub_exit(struct usb_phy_roothub *phy_roothub);
19 int usb_phy_roothub_set_mode(struct usb_phy_roothub *phy_roothub,
21 int usb_phy_roothub_calibrate(struct usb_phy_roothub *phy_roothub);
22 int usb_phy_roothub_power_on(struct usb_phy_roothub *phy_roothub);
23 void usb_phy_roothub_power_off(struct usb_phy_roothub *phy_roothub);
26 struct usb_phy_roothub *phy_roothub);
28 struct usb_phy_roothub *phy_roothub);
H A Dhcd.c2271 hcd->phy_roothub); in hcd_bus_suspend()
2312 hcd->phy_roothub); in hcd_bus_resume()
2799 if (IS_ERR(hcd->phy_roothub)) in usb_add_hcd()
2800 return PTR_ERR(hcd->phy_roothub); in usb_add_hcd()
2802 retval = usb_phy_roothub_init(hcd->phy_roothub); in usb_add_hcd()
2806 retval = usb_phy_roothub_set_mode(hcd->phy_roothub, in usb_add_hcd()
2809 retval = usb_phy_roothub_set_mode(hcd->phy_roothub, in usb_add_hcd()
2987 usb_phy_roothub_power_off(hcd->phy_roothub); in usb_add_hcd()
2989 usb_phy_roothub_exit(hcd->phy_roothub); in usb_add_hcd()
3063 usb_phy_roothub_power_off(hcd->phy_roothub); in usb_remove_hcd()
[all …]
/openbmc/linux/include/linux/usb/
H A Dhcd.h100 struct usb_phy_roothub *phy_roothub; member