phy.h 578 B

123456789101112131415
  1. struct device;
  2. struct usb_phy_roothub;
  3. struct usb_phy_roothub *usb_phy_roothub_alloc(struct device *dev);
  4. int usb_phy_roothub_init(struct usb_phy_roothub *phy_roothub);
  5. int usb_phy_roothub_exit(struct usb_phy_roothub *phy_roothub);
  6. int usb_phy_roothub_power_on(struct usb_phy_roothub *phy_roothub);
  7. void usb_phy_roothub_power_off(struct usb_phy_roothub *phy_roothub);
  8. int usb_phy_roothub_suspend(struct device *controller_dev,
  9. struct usb_phy_roothub *phy_roothub);
  10. int usb_phy_roothub_resume(struct device *controller_dev,
  11. struct usb_phy_roothub *phy_roothub);