Lines Matching defs:string
59 * @con_id: connection ID string on device
90 * @con_id: connection ID string on device
657 * @string: the phy name as given in the dt data or the name of the controller
664 struct phy *phy_get(struct device *dev, const char *string)
670 if (string == NULL) {
671 dev_WARN(dev, "missing string\n");
677 string);
680 phy = phy_find(dev, string);
702 * @string: the phy name as given in the dt data or the name of the controller
709 struct phy *phy_optional_get(struct device *dev, const char *string)
711 struct phy *phy = phy_get(dev, string);
723 * @string: the phy name as given in the dt data or phy device name
730 struct phy *devm_phy_get(struct device *dev, const char *string)
738 phy = phy_get(dev, string);
753 * @string: the phy name as given in the dt data or phy device name
763 struct phy *devm_phy_optional_get(struct device *dev, const char *string)
765 struct phy *phy = devm_phy_get(dev, string);