diff options
author | Kamil Debski <k.debski@samsung.com> | 2014-03-06 06:16:47 -0500 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2014-03-08 02:09:43 -0500 |
commit | b5d682f4eb76c98f2ca5658926df43dd05cf2c37 (patch) | |
tree | f915d8d63c8ee47cd64fe83d250225044c764b27 /include/linux/phy | |
parent | 0b3f3b2c777a2f7d20c9826a190ffd5bbd288f8f (diff) |
phy: core: Add devm_of_phy_get to phy-core
Adding devm_of_phy_get will allow to get phys by supplying a
pointer to the struct device_node instead of struct device.
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'include/linux/phy')
-rw-r--r-- | include/linux/phy/phy.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h index 50c7629b5860..e2f5ca96cddc 100644 --- a/include/linux/phy/phy.h +++ b/include/linux/phy/phy.h | |||
@@ -149,6 +149,8 @@ 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); |
154 | struct phy *of_phy_get(struct device_node *np, const char *con_id); | 156 | 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, | |||
252 | return ERR_PTR(-ENOSYS); | 254 | return ERR_PTR(-ENOSYS); |
253 | } | 255 | } |
254 | 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 | |||
255 | static inline void phy_put(struct phy *phy) | 264 | static inline void phy_put(struct phy *phy) |
256 | { | 265 | { |
257 | } | 266 | } |