Lines Matching defs:phy
15 #include <linux/phy/phy.h>
22 struct phy *phy;
26 static int bcm_ns_usb2_phy_init(struct phy *phy)
28 struct bcm_ns_usb2 *usb2 = phy_get_drvdata(phy);
101 usb2->ref_clk = devm_clk_get(dev, "phy-ref-clk");
107 usb2->phy = devm_phy_create(dev, NULL, &ops);
108 if (IS_ERR(usb2->phy))
109 return PTR_ERR(usb2->phy);
111 phy_set_drvdata(usb2->phy, usb2);
119 { .compatible = "brcm,ns-usb2-phy", },