Lines Matching defs:phy
11 #include <linux/phy/phy.h>
22 static int ath79_usb_phy_power_on(struct phy *phy)
24 struct ath79_usb_phy *priv = phy_get_drvdata(phy);
40 static int ath79_usb_phy_power_off(struct phy *phy)
42 struct ath79_usb_phy *priv = phy_get_drvdata(phy);
67 struct phy *phy;
73 priv->reset = devm_reset_control_get(&pdev->dev, "phy");
82 phy = devm_phy_create(&pdev->dev, NULL, &ath79_usb_phy_ops);
83 if (IS_ERR(phy))
84 return PTR_ERR(phy);
86 phy_set_drvdata(phy, priv);
93 { .compatible = "qca,ar7100-usb-phy" },
102 .name = "ath79-usb-phy",