2009-09-30 14:50:17 -04:00
|
|
|
#include <linux/utsname.h>
|
|
|
|
#include <net/cfg80211.h>
|
2011-03-07 16:17:59 -05:00
|
|
|
#include "core.h"
|
2012-06-27 17:19:42 +03:00
|
|
|
#include "rdev-ops.h"
|
2009-09-30 14:50:17 -04:00
|
|
|
|
2014-06-04 17:31:56 +02:00
|
|
|
void cfg80211_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
|
2009-09-30 14:50:17 -04:00
|
|
|
{
|
|
|
|
struct wireless_dev *wdev = dev->ieee80211_ptr;
|
|
|
|
|
|
|
|
strlcpy(info->driver, wiphy_dev(wdev->wiphy)->driver->name,
|
|
|
|
sizeof(info->driver));
|
|
|
|
|
|
|
|
strlcpy(info->version, init_utsname()->release, sizeof(info->version));
|
|
|
|
|
2009-09-24 11:02:42 -07:00
|
|
|
if (wdev->wiphy->fw_version[0])
|
2013-01-06 00:44:26 +00:00
|
|
|
strlcpy(info->fw_version, wdev->wiphy->fw_version,
|
2009-09-24 11:02:42 -07:00
|
|
|
sizeof(info->fw_version));
|
|
|
|
else
|
2013-01-06 00:44:26 +00:00
|
|
|
strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
|
2009-09-30 14:50:17 -04:00
|
|
|
|
|
|
|
strlcpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)),
|
|
|
|
sizeof(info->bus_info));
|
|
|
|
}
|
2014-06-04 17:31:56 +02:00
|
|
|
EXPORT_SYMBOL(cfg80211_get_drvinfo);
|