diff options
author | Maxime Chevallier <maxime.chevallier@bootlin.com> | 2019-02-11 15:25:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-13 19:17:53 -0500 |
commit | 3feb9b23bf4cbf9f34568035170c6f1c25416523 (patch) | |
tree | ace61a96595448b296bbf5b8131b7d958d953b87 /include/linux/phy.h | |
parent | a4eaed9f9a895b16bb2c54e0ff6b3c99404fec92 (diff) | |
download | talos-op-linux-3feb9b23bf4cbf9f34568035170c6f1c25416523.tar.gz talos-op-linux-3feb9b23bf4cbf9f34568035170c6f1c25416523.zip |
net: phy: Move of_set_phy_eee_broken to phy-core.c
Since of_set_phy_supported was moved to phy-core.c, we can also move
of_set_phy_eee_broken to the same location, so that we have all OF
functions in the same place.
This patch doesn't intend to introduce any change in behaviour.
Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/phy.h')
-rw-r--r-- | include/linux/phy.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 20344c7744d8..1a1d93a2a906 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -674,6 +674,7 @@ phy_lookup_setting(int speed, int duplex, const unsigned long *mask, size_t phy_speeds(unsigned int *speeds, size_t size, unsigned long *mask); void of_set_phy_supported(struct phy_device *phydev); +void of_set_phy_eee_broken(struct phy_device *phydev); static inline bool __phy_is_started(struct phy_device *phydev) { |