Lines Matching defs:phy
11 #include <linux/phy/phy.h>
82 struct phy *phy;
86 phy = of_phy_get(dev->of_node, "usb3-phy");
87 if (IS_ERR(phy) && PTR_ERR(phy) == -EPROBE_DEFER)
89 else if (IS_ERR(phy))
92 ret = phy_init(phy);
96 ret = phy_set_mode(phy, PHY_MODE_USB_HOST_SS);
100 ret = phy_power_on(phy);
109 phy_power_off(phy);
111 phy_exit(phy);
113 of_phy_put(phy);