Lines Matching defs:phy
14 #include <dt-bindings/phy/phy.h>
19 #include <linux/phy/phy.h>
25 struct phy *phy;
31 static int armada375_usb_phy_init(struct phy *phy)
36 cluster_phy = phy_get_drvdata(phy);
58 * then we provide a phy to the first one and return an error for the
63 static struct phy *armada375_usb_phy_xlate(struct device *dev,
72 * Either the phy had never been requested and then the first
96 /* Store which phy mode is used for next test */
99 return cluster_phy->phy;
105 struct phy *phy;
118 phy = devm_phy_create(dev, NULL, &armada375_usb_phy_ops);
119 if (IS_ERR(phy)) {
121 return PTR_ERR(phy);
124 cluster_phy->phy = phy;
128 phy_set_drvdata(phy, cluster_phy);