diff options
author | Kalle Valo <kalle.valo@nokia.com> | 2009-09-24 11:02:42 -0700 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-07 16:39:46 -0400 |
commit | dfce95f51fe34fa18c87a7d0bea53594b9bf1b9a (patch) | |
tree | 2a5ad730134289b6a792af8a2cbd9d1aa3507f55 /include | |
parent | 4890e3beddfb4a6859c4bb782c9cd05dd94ead82 (diff) | |
download | linux-3.10-dfce95f51fe34fa18c87a7d0bea53594b9bf1b9a.tar.gz linux-3.10-dfce95f51fe34fa18c87a7d0bea53594b9bf1b9a.tar.bz2 linux-3.10-dfce95f51fe34fa18c87a7d0bea53594b9bf1b9a.zip |
cfg80211: add firmware and hardware version to wiphy
It's useful to provide firmware and hardware version to user space and have a
generic interface to retrieve them. Users can provide the version information
in bug reports etc.
Add fields for firmware and hardware version to struct wiphy.
(Dropped nl80211 bits for now and modified remaining bits in favor of
ethtool. -- JWL)
Cc: Kalle Valo <kalle.valo@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/cfg80211.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 241ea14d6df..6f4862b3ec2 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -1142,6 +1142,9 @@ struct wiphy { u32 frag_threshold; u32 rts_threshold; + char fw_version[ETHTOOL_BUSINFO_LEN]; + u32 hw_version; + /* If multiple wiphys are registered and you're handed e.g. * a regular netdev with assigned ieee80211_ptr, you won't * know whether it points to a wiphy your driver has registered |