diff options
author | Greg Kroah-Hartman | 2016-11-07 09:55:13 +0100 |
---|---|---|
committer | Greg Kroah-Hartman | 2016-11-07 09:55:13 +0100 |
commit | e244978163836ffef635ecc57417f25332698f00 (patch) | |
tree | 044817e0080a5866c7248f493482caace0f282bb /include/linux | |
parent | d6124b409ca33c100170ffde51cd8dff761454a1 (diff) | |
parent | 4320f9d4c1831fd4d244a9de8f81bc27ea67699c (diff) |
Merge tag 'phy-for-4.9-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy into usb-linus
Kishon writes:
phy: for 4.9 -rc
phy fixes:
*) Add a empty function for phy_reset when CONFIG_GENERIC_PHY is not set
*) change the phy lookup table for da8xx-usb to match it with the name
present in the board configuraion file (used for non-dt boot)
*) Fix incorrect programming sequence in w.r.t deassert of phy_rst
in phy-rockchip-pcie
*) Fix to avoid NULL pointer dereferencing error in sun4i phy
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/phy/phy.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h index ee1bed7dbfc6..78bb0d7f6b11 100644 --- a/include/linux/phy/phy.h +++ b/include/linux/phy/phy.h @@ -253,6 +253,13 @@ static inline int phy_set_mode(struct phy *phy, enum phy_mode mode) return -ENOSYS; } +static inline int phy_reset(struct phy *phy) +{ + if (!phy) + return 0; + return -ENOSYS; +} + static inline int phy_get_bus_width(struct phy *phy) { return -ENOSYS; |