Lines Matching defs:phy
16 #include <linux/phy/phy.h>
24 struct phy *phy;
32 static int bcm_ns_usb2_phy_init(struct phy *phy)
34 struct bcm_ns_usb2 *usb2 = phy_get_drvdata(phy);
133 usb2->ref_clk = devm_clk_get(dev, "phy-ref-clk");
139 usb2->phy = devm_phy_create(dev, NULL, &ops);
140 if (IS_ERR(usb2->phy))
141 return PTR_ERR(usb2->phy);
143 phy_set_drvdata(usb2->phy, usb2);
151 { .compatible = "brcm,ns-usb2-phy", },