1STRUCT IEEE80211_SUP(9) Device registration STRUCT IEEE80211_SUP(9)
2
3
4
6 struct_ieee80211_supported_band - frequency band definition
7
9 struct ieee80211_supported_band {
10 struct ieee80211_channel * channels;
11 struct ieee80211_rate * bitrates;
12 enum nl80211_band band;
13 int n_channels;
14 int n_bitrates;
15 struct ieee80211_sta_ht_cap ht_cap;
16 struct ieee80211_sta_vht_cap vht_cap;
17 };
18
20 channels
21 Array of channels the hardware can operate in in this band.
22
23 bitrates
24 Array of bitrates the hardware can operate with in this band. Must
25 be sorted to give a valid “supported rates” IE, i.e. CCK rates
26 first, then OFDM.
27
28 band
29 the band this structure represents
30
31 n_channels
32 Number of channels in channels
33
34 n_bitrates
35 Number of bitrates in bitrates
36
37 ht_cap
38 HT capabilities in this band
39
40 vht_cap
41 VHT capabilities in this band
42
44 This structure describes a frequency band a wiphy is able to operate
45 in.
46
48 Johannes Berg <johannes@sipsolutions.net>
49 Author.
50
52Kernel Hackers Manual 3.10 June 2019 STRUCT IEEE80211_SUP(9)