Martin Blumenstingl | 9d3cd19 | 2018-04-18 21:39:50 +0200 | [diff] [blame] | 1 | struct device; |
Martin Blumenstingl | 07dbff0 | 2018-03-03 22:43:04 +0100 | [diff] [blame] | 2 | struct usb_phy_roothub; |
| 3 | |
Martin Blumenstingl | 63cb03f | 2018-04-18 21:39:47 +0200 | [diff] [blame] | 4 | struct usb_phy_roothub *usb_phy_roothub_alloc(struct device *dev); |
| 5 | |
| 6 | int usb_phy_roothub_init(struct usb_phy_roothub *phy_roothub); |
Martin Blumenstingl | 07dbff0 | 2018-03-03 22:43:04 +0100 | [diff] [blame] | 7 | int usb_phy_roothub_exit(struct usb_phy_roothub *phy_roothub); |
| 8 | |
| 9 | int usb_phy_roothub_power_on(struct usb_phy_roothub *phy_roothub); |
| 10 | void usb_phy_roothub_power_off(struct usb_phy_roothub *phy_roothub); |
Martin Blumenstingl | f0e36d4 | 2018-04-18 21:39:48 +0200 | [diff] [blame] | 11 | |
| 12 | int usb_phy_roothub_suspend(struct device *controller_dev, |
| 13 | struct usb_phy_roothub *phy_roothub); |
| 14 | int usb_phy_roothub_resume(struct device *controller_dev, |
| 15 | struct usb_phy_roothub *phy_roothub); |