diff options
Diffstat (limited to 'include/linux/phy/phy.h')
-rw-r--r-- | include/linux/phy/phy.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h index 3f83459dbb20..e2f5ca96cddc 100644 --- a/include/linux/phy/phy.h +++ b/include/linux/phy/phy.h | |||
@@ -149,8 +149,11 @@ struct phy *phy_get(struct device *dev, const char *string); | |||
149 | struct phy *phy_optional_get(struct device *dev, const char *string); | 149 | struct phy *phy_optional_get(struct device *dev, const char *string); |
150 | struct phy *devm_phy_get(struct device *dev, const char *string); | 150 | struct phy *devm_phy_get(struct device *dev, const char *string); |
151 | struct phy *devm_phy_optional_get(struct device *dev, const char *string); | 151 | struct phy *devm_phy_optional_get(struct device *dev, const char *string); |
152 | struct phy *devm_of_phy_get(struct device *dev, struct device_node *np, | ||
153 | const char *con_id); | ||
152 | void phy_put(struct phy *phy); | 154 | void phy_put(struct phy *phy); |
153 | void devm_phy_put(struct device *dev, struct phy *phy); | 155 | void devm_phy_put(struct device *dev, struct phy *phy); |
156 | struct phy *of_phy_get(struct device_node *np, const char *con_id); | ||
154 | struct phy *of_phy_simple_xlate(struct device *dev, | 157 | struct phy *of_phy_simple_xlate(struct device *dev, |
155 | struct of_phandle_args *args); | 158 | struct of_phandle_args *args); |
156 | struct phy *phy_create(struct device *dev, const struct phy_ops *ops, | 159 | struct phy *phy_create(struct device *dev, const struct phy_ops *ops, |
@@ -251,6 +254,13 @@ static inline struct phy *devm_phy_optional_get(struct device *dev, | |||
251 | return ERR_PTR(-ENOSYS); | 254 | return ERR_PTR(-ENOSYS); |
252 | } | 255 | } |
253 | 256 | ||
257 | static inline struct phy *devm_of_phy_get(struct device *dev, | ||
258 | struct device_node *np, | ||
259 | const char *con_id) | ||
260 | { | ||
261 | return ERR_PTR(-ENOSYS); | ||
262 | } | ||
263 | |||
254 | static inline void phy_put(struct phy *phy) | 264 | static inline void phy_put(struct phy *phy) |
255 | { | 265 | { |
256 | } | 266 | } |
@@ -259,6 +269,11 @@ static inline void devm_phy_put(struct device *dev, struct phy *phy) | |||
259 | { | 269 | { |
260 | } | 270 | } |
261 | 271 | ||
272 | static inline struct phy *of_phy_get(struct device_node *np, const char *con_id) | ||
273 | { | ||
274 | return ERR_PTR(-ENOSYS); | ||
275 | } | ||
276 | |||
262 | static inline struct phy *of_phy_simple_xlate(struct device *dev, | 277 | static inline struct phy *of_phy_simple_xlate(struct device *dev, |
263 | struct of_phandle_args *args) | 278 | struct of_phandle_args *args) |
264 | { | 279 | { |