diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-07-29 13:30:15 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-08-16 14:39:45 -0400 |
commit | bcf3c7c5264f06cd2542e6bece94c65bf0ac482b (patch) | |
tree | 1773578f1ff9094cb07c5585d9c745ef71fcfae8 /drivers/net/wireless/b43legacy/main.c | |
parent | 652caa5b67b096b13c34f299db238e1daeab1f67 (diff) |
b43legacy: update hw/fw version info in wiphy struct
This makes the information available through ethtool...
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43legacy/main.c')
-rw-r--r-- | drivers/net/wireless/b43legacy/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43legacy/main.c b/drivers/net/wireless/b43legacy/main.c index 1713f5f7a58b..67f18ecdb3bf 100644 --- a/drivers/net/wireless/b43legacy/main.c +++ b/drivers/net/wireless/b43legacy/main.c | |||
@@ -1623,6 +1623,7 @@ error: | |||
1623 | 1623 | ||
1624 | static int b43legacy_upload_microcode(struct b43legacy_wldev *dev) | 1624 | static int b43legacy_upload_microcode(struct b43legacy_wldev *dev) |
1625 | { | 1625 | { |
1626 | struct wiphy *wiphy = dev->wl->hw->wiphy; | ||
1626 | const size_t hdr_len = sizeof(struct b43legacy_fw_header); | 1627 | const size_t hdr_len = sizeof(struct b43legacy_fw_header); |
1627 | const __be32 *data; | 1628 | const __be32 *data; |
1628 | unsigned int i; | 1629 | unsigned int i; |
@@ -1732,6 +1733,10 @@ static int b43legacy_upload_microcode(struct b43legacy_wldev *dev) | |||
1732 | dev->fw.rev = fwrev; | 1733 | dev->fw.rev = fwrev; |
1733 | dev->fw.patch = fwpatch; | 1734 | dev->fw.patch = fwpatch; |
1734 | 1735 | ||
1736 | snprintf(wiphy->fw_version, sizeof(wiphy->fw_version), "%u.%u", | ||
1737 | dev->fw.rev, dev->fw.patch); | ||
1738 | wiphy->hw_version = dev->dev->id.coreid; | ||
1739 | |||
1735 | return 0; | 1740 | return 0; |
1736 | 1741 | ||
1737 | error: | 1742 | error: |