diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-08-27 20:04:54 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-28 01:59:40 -0400 |
commit | ce31b31c68e7e39f29b1257581fbd08ce3ca5589 (patch) | |
tree | 504543fb702e6d4d0b716d7d2eaf763191d07627 /include/net/dsa.h | |
parent | ec9436baedb689668c409cfc8b69eb9573b0d661 (diff) |
net: dsa: allow updating fixed PHY link information
Allow switch drivers to hook a PHY link update callback to perform
port-specific link work.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index 2d3835924dd2..2c9563f0b2f4 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/workqueue.h> | 17 | #include <linux/workqueue.h> |
18 | #include <linux/of.h> | 18 | #include <linux/of.h> |
19 | #include <linux/phy.h> | 19 | #include <linux/phy.h> |
20 | #include <linux/phy_fixed.h> | ||
20 | 21 | ||
21 | #define DSA_MAX_SWITCHES 4 | 22 | #define DSA_MAX_SWITCHES 4 |
22 | #define DSA_MAX_PORTS 12 | 23 | #define DSA_MAX_PORTS 12 |
@@ -187,6 +188,8 @@ struct dsa_switch_driver { | |||
187 | */ | 188 | */ |
188 | void (*adjust_link)(struct dsa_switch *ds, int port, | 189 | void (*adjust_link)(struct dsa_switch *ds, int port, |
189 | struct phy_device *phydev); | 190 | struct phy_device *phydev); |
191 | void (*fixed_link_update)(struct dsa_switch *ds, int port, | ||
192 | struct fixed_phy_status *st); | ||
190 | 193 | ||
191 | /* | 194 | /* |
192 | * ethtool hardware statistics. | 195 | * ethtool hardware statistics. |