aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless/ethtool.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/wireless/ethtool.c')
-rw-r--r--net/wireless/ethtool.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/net/wireless/ethtool.c b/net/wireless/ethtool.c
index 9bde4d1d3e9b..7eecdf40cf80 100644
--- a/net/wireless/ethtool.c
+++ b/net/wireless/ethtool.c
@@ -68,6 +68,32 @@ static int cfg80211_set_ringparam(struct net_device *dev,
68 return -ENOTSUPP; 68 return -ENOTSUPP;
69} 69}
70 70
71static int cfg80211_get_sset_count(struct net_device *dev, int sset)
72{
73 struct wireless_dev *wdev = dev->ieee80211_ptr;
74 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
75 if (rdev->ops->get_et_sset_count)
76 return rdev->ops->get_et_sset_count(wdev->wiphy, dev, sset);
77 return -EOPNOTSUPP;
78}
79
80static void cfg80211_get_stats(struct net_device *dev,
81 struct ethtool_stats *stats, u64 *data)
82{
83 struct wireless_dev *wdev = dev->ieee80211_ptr;
84 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
85 if (rdev->ops->get_et_stats)
86 rdev->ops->get_et_stats(wdev->wiphy, dev, stats, data);
87}
88
89static void cfg80211_get_strings(struct net_device *dev, u32 sset, u8 *data)
90{
91 struct wireless_dev *wdev = dev->ieee80211_ptr;
92 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
93 if (rdev->ops->get_et_strings)
94 rdev->ops->get_et_strings(wdev->wiphy, dev, sset, data);
95}
96
71const struct ethtool_ops cfg80211_ethtool_ops = { 97const struct ethtool_ops cfg80211_ethtool_ops = {
72 .get_drvinfo = cfg80211_get_drvinfo, 98 .get_drvinfo = cfg80211_get_drvinfo,
73 .get_regs_len = cfg80211_get_regs_len, 99 .get_regs_len = cfg80211_get_regs_len,
@@ -75,4 +101,7 @@ const struct ethtool_ops cfg80211_ethtool_ops = {
75 .get_link = ethtool_op_get_link, 101 .get_link = ethtool_op_get_link,
76 .get_ringparam = cfg80211_get_ringparam, 102 .get_ringparam = cfg80211_get_ringparam,
77 .set_ringparam = cfg80211_set_ringparam, 103 .set_ringparam = cfg80211_set_ringparam,
104 .get_strings = cfg80211_get_strings,
105 .get_ethtool_stats = cfg80211_get_stats,
106 .get_sset_count = cfg80211_get_sset_count,
78}; 107};