summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorKamil Debski <k.debski@samsung.com>2014-03-06 12:16:47 +0100
committerChanho Park <chanho61.park@samsung.com>2014-08-08 15:19:54 +0900
commitca6f2fce077571e3a5b1cc516ac8bd3bde216013 (patch)
treef11d5828a0087f2d90fe97ba016e79e74d45216b /include/linux
parent3b42f93fccffb6bb3fae20c6b2d39a934efabadc (diff)
downloadlinux-3.10-ca6f2fce077571e3a5b1cc516ac8bd3bde216013.tar.gz
linux-3.10-ca6f2fce077571e3a5b1cc516ac8bd3bde216013.tar.bz2
linux-3.10-ca6f2fce077571e3a5b1cc516ac8bd3bde216013.zip
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> [backport from upstream commit b5d682f4eb76c98f2ca5658926df43dd05cf2c37] Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Change-Id: Ie1d75af85ef1072457074d94ab268c5d570ed930
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/phy/phy.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h
index 50c7629b586..e2f5ca96cdd 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);
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_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 devm_phy_put(struct device *dev, struct phy *phy);
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);
}
+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)
{
}