diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-08-28 00:04:54 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-28 05:59:40 (GMT) |
commit | ce31b31c68e7e39f29b1257581fbd08ce3ca5589 (patch) | |
tree | 504543fb702e6d4d0b716d7d2eaf763191d07627 /include/net/dsa.h | |
parent | ec9436baedb689668c409cfc8b69eb9573b0d661 (diff) | |
download | linux-ce31b31c68e7e39f29b1257581fbd08ce3ca5589.tar.xz |
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 2d383592..2c9563f 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -17,6 +17,7 @@ #include <linux/workqueue.h> #include <linux/of.h> #include <linux/phy.h> +#include <linux/phy_fixed.h> #define DSA_MAX_SWITCHES 4 #define DSA_MAX_PORTS 12 @@ -187,6 +188,8 @@ struct dsa_switch_driver { */ void (*adjust_link)(struct dsa_switch *ds, int port, struct phy_device *phydev); + void (*fixed_link_update)(struct dsa_switch *ds, int port, + struct fixed_phy_status *st); /* * ethtool hardware statistics. |