Lines Matching refs:string
61 * @con_id: connection ID string on device
92 * @con_id: connection ID string on device
727 * @string: the phy name as given in the dt data or the name of the controller
734 struct phy *phy_get(struct device *dev, const char *string)
741 if (string)
743 string);
748 if (string == NULL) {
749 dev_WARN(dev, "missing string\n");
752 phy = phy_find(dev, string);
774 * @string: the phy name as given in the dt data or phy device name
781 struct phy *devm_phy_get(struct device *dev, const char *string)
789 phy = phy_get(dev, string);
804 * @string: the phy name as given in the dt data or phy device name
814 struct phy *devm_phy_optional_get(struct device *dev, const char *string)
816 struct phy *phy = devm_phy_get(dev, string);