|
@@ -149,6 +149,8 @@ struct phy *phy_get(struct device *dev, const char *string);
|
|
struct phy *phy_optional_get(struct device *dev, const char *string);
|
|
struct phy *phy_optional_get(struct device *dev, const char *string);
|
|
struct phy *devm_phy_get(struct device *dev, const char *string);
|
|
struct phy *devm_phy_get(struct device *dev, const char *string);
|
|
struct phy *devm_phy_optional_get(struct device *dev, const char *string);
|
|
struct phy *devm_phy_optional_get(struct device *dev, const char *string);
|
|
|
|
+struct phy *devm_of_phy_get(struct device *dev, struct device_node *np,
|
|
|
|
+ const char *con_id);
|
|
void phy_put(struct phy *phy);
|
|
void phy_put(struct phy *phy);
|
|
void devm_phy_put(struct device *dev, struct phy *phy);
|
|
void devm_phy_put(struct device *dev, struct phy *phy);
|
|
struct phy *of_phy_get(struct device_node *np, const char *con_id);
|
|
struct phy *of_phy_get(struct device_node *np, const char *con_id);
|
|
@@ -252,6 +254,13 @@ static inline struct phy *devm_phy_optional_get(struct device *dev,
|
|
return ERR_PTR(-ENOSYS);
|
|
return ERR_PTR(-ENOSYS);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline struct phy *devm_of_phy_get(struct device *dev,
|
|
|
|
+ struct device_node *np,
|
|
|
|
+ const char *con_id)
|
|
|
|
+{
|
|
|
|
+ return ERR_PTR(-ENOSYS);
|
|
|
|
+}
|
|
|
|
+
|
|
static inline void phy_put(struct phy *phy)
|
|
static inline void phy_put(struct phy *phy)
|
|
{
|
|
{
|
|
}
|
|
}
|