diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-03 01:13:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-06-03 01:13:41 -0400 |
commit | b3d424e3dcbb5eba572baae30e1052b2fff7b51e (patch) | |
tree | 8055b6dca7b3cda1beffc6f5aee3a7602daef09b /include/linux/phy | |
parent | f50420223071b6ff4b586308f5c27eec54694a81 (diff) | |
parent | 692fbb89fa0b8028f402e33eb912474e11b5f435 (diff) |
Merge tag 'phy-for-v4.2' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy into usb-next
Kishon writes:
phy: for 4.2 merge window
*) new Broadcom SATA3 PHY driver for Broadcom STB SoCs
*) new phy API to get PHY by index which is used in EHCI and
OHCI controller drivers
*) support specifying supply at port level used for multi-port PHYs
*) sparse warning fixes in miphy PHYs
*) fix pm_runtime issues in twl4030 driver
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 a0197fa1b116..8cf05e341cff 100644 --- a/include/linux/phy/phy.h +++ b/include/linux/phy/phy.h | |||
@@ -133,6 +133,8 @@ struct phy *devm_phy_get(struct device *dev, const char *string); | |||
133 | struct phy *devm_phy_optional_get(struct device *dev, const char *string); | 133 | struct phy *devm_phy_optional_get(struct device *dev, const char *string); |
134 | struct phy *devm_of_phy_get(struct device *dev, struct device_node *np, | 134 | struct phy *devm_of_phy_get(struct device *dev, struct device_node *np, |
135 | const char *con_id); | 135 | const char *con_id); |
136 | struct phy *devm_of_phy_get_by_index(struct device *dev, struct device_node *np, | ||
137 | int index); | ||
136 | void phy_put(struct phy *phy); | 138 | void phy_put(struct phy *phy); |
137 | void devm_phy_put(struct device *dev, struct phy *phy); | 139 | void devm_phy_put(struct device *dev, struct phy *phy); |
138 | struct phy *of_phy_get(struct device_node *np, const char *con_id); | 140 | struct phy *of_phy_get(struct device_node *np, const char *con_id); |
@@ -261,6 +263,13 @@ static inline struct phy *devm_of_phy_get(struct device *dev, | |||
261 | return ERR_PTR(-ENOSYS); | 263 | return ERR_PTR(-ENOSYS); |
262 | } | 264 | } |
263 | 265 | ||
266 | static inline struct phy *devm_of_phy_get_by_index(struct device *dev, | ||
267 | struct device_node *np, | ||
268 | int index) | ||
269 | { | ||
270 | return ERR_PTR(-ENOSYS); | ||
271 | } | ||
272 | |||
264 | static inline void phy_put(struct phy *phy) | 273 | static inline void phy_put(struct phy *phy) |
265 | { | 274 | { |
266 | } | 275 | } |