aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mii.h
diff options
context:
space:
mode:
authorPhilippe Reynes <tremyfr@gmail.com>2016-11-01 16:32:25 +0100
committerDavid S. Miller <davem@davemloft.net>2016-11-02 15:17:09 -0400
commitbc8ee596afe8f35b379f87575c46d800dd8e7e68 (patch)
treef230db0a33ec8f63663cce5c787310db9505cf2b /include/linux/mii.h
parentMerge branch 'mlx4-XDP-tx-refactor' (diff)
downloadlinux-dev-bc8ee596afe8f35b379f87575c46d800dd8e7e68.tar.xz
linux-dev-bc8ee596afe8f35b379f87575c46d800dd8e7e68.zip
net: mii: add generic function to support ksetting support
The old ethtool api (get_setting and set_setting) has generic mii functions mii_ethtool_sset and mii_ethtool_gset. To support the new ethtool api ({get|set}_link_ksettings), we add two generics mii function mii_ethtool_{get|set}_link_ksettings_get. Signed-off-by: Philippe Reynes <tremyfr@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mii.h')
-rw-r--r--include/linux/mii.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mii.h b/include/linux/mii.h
index 47492c9631b3..1629a0c32679 100644
--- a/include/linux/mii.h
+++ b/include/linux/mii.h
@@ -31,7 +31,11 @@ struct mii_if_info {
extern int mii_link_ok (struct mii_if_info *mii);
extern int mii_nway_restart (struct mii_if_info *mii);
extern int mii_ethtool_gset(struct mii_if_info *mii, struct ethtool_cmd *ecmd);
+extern int mii_ethtool_get_link_ksettings(
+ struct mii_if_info *mii, struct ethtool_link_ksettings *cmd);
extern int mii_ethtool_sset(struct mii_if_info *mii, struct ethtool_cmd *ecmd);
+extern int mii_ethtool_set_link_ksettings(
+ struct mii_if_info *mii, const struct ethtool_link_ksettings *cmd);
extern int mii_check_gmii_support(struct mii_if_info *mii);
extern void mii_check_link (struct mii_if_info *mii);
extern unsigned int mii_check_media (struct mii_if_info *mii,