diff options
author | John W. Linville <linville@tuxdriver.com> | 2009-09-30 14:50:17 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-07 16:39:45 -0400 |
commit | 4890e3beddfb4a6859c4bb782c9cd05dd94ead82 (patch) | |
tree | da00d4f34f6c76acc46c9c44be91d17b0fbbfe02 /net/wireless/ethtool.c | |
parent | f41bb897f202d23a7d896c716002a3d6050b991e (diff) |
wireless: implement basic ethtool support for cfg80211 devices
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/ethtool.c')
-rw-r--r-- | net/wireless/ethtool.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/wireless/ethtool.c b/net/wireless/ethtool.c new file mode 100644 index 000000000000..80d6d0d31f12 --- /dev/null +++ b/net/wireless/ethtool.c | |||
@@ -0,0 +1,24 @@ | |||
1 | #include <linux/utsname.h> | ||
2 | #include <net/cfg80211.h> | ||
3 | #include "ethtool.h" | ||
4 | |||
5 | static void cfg80211_get_drvinfo(struct net_device *dev, | ||
6 | struct ethtool_drvinfo *info) | ||
7 | { | ||
8 | struct wireless_dev *wdev = dev->ieee80211_ptr; | ||
9 | |||
10 | strlcpy(info->driver, wiphy_dev(wdev->wiphy)->driver->name, | ||
11 | sizeof(info->driver)); | ||
12 | |||
13 | strlcpy(info->version, init_utsname()->release, sizeof(info->version)); | ||
14 | |||
15 | strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); | ||
16 | |||
17 | strlcpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)), | ||
18 | sizeof(info->bus_info)); | ||
19 | } | ||
20 | |||
21 | const struct ethtool_ops cfg80211_ethtool_ops = { | ||
22 | .get_drvinfo = cfg80211_get_drvinfo, | ||
23 | .get_link = ethtool_op_get_link, | ||
24 | }; | ||