1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>struct ieee80211_supported_band</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="The 802.11 subsystems &#8211; for kernel developers"><link rel="up" href="bk01ch01.html" title="Chapter&#160;1.&#160;Device registration"><link rel="prev" href="API-struct-ieee80211-sta-ht-cap.html" title="struct ieee80211_sta_ht_cap"><link rel="next" href="API-enum-cfg80211-signal-type.html" title="enum cfg80211_signal_type"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="phrase">struct ieee80211_supported_band</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="API-struct-ieee80211-sta-ht-cap.html">Prev</a>&#160;</td><th width="60%" align="center">Chapter&#160;1.&#160;Device registration</th><td width="20%" align="right">&#160;<a accesskey="n" href="API-enum-cfg80211-signal-type.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="API-struct-ieee80211-supported-band"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>struct ieee80211_supported_band &#8212; 
2  frequency band definition
3 </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="programlisting">
4struct ieee80211_supported_band {
5  struct ieee80211_channel * channels;
6  struct ieee80211_rate * bitrates;
7  enum ieee80211_band band;
8  int n_channels;
9  int n_bitrates;
10  struct ieee80211_sta_ht_cap ht_cap;
11  struct ieee80211_sta_vht_cap vht_cap;
12};  </pre></div><div class="refsect1"><a name="idp1112122276"></a><h2>Members</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term">channels</span></dt><dd><p>
13Array of channels the hardware can operate in
14in this band.
15      </p></dd><dt><span class="term">bitrates</span></dt><dd><p>
16Array of bitrates the hardware can operate with
17in this band. Must be sorted to give a valid <span class="quote">&#8220;<span class="quote">supported
18rates</span>&#8221;</span> IE, i.e. CCK rates first, then OFDM.
19      </p></dd><dt><span class="term">band</span></dt><dd><p>
20the band this structure represents
21      </p></dd><dt><span class="term">n_channels</span></dt><dd><p>
22Number of channels in <em class="parameter"><code>channels</code></em>
23      </p></dd><dt><span class="term">n_bitrates</span></dt><dd><p>
24Number of bitrates in <em class="parameter"><code>bitrates</code></em>
25      </p></dd><dt><span class="term">ht_cap</span></dt><dd><p>
26HT capabilities in this band
27      </p></dd><dt><span class="term">vht_cap</span></dt><dd><p>
28VHT capabilities in this band
29      </p></dd></dl></div></div><div class="refsect1"><a name="idp1112128524"></a><h2>Description</h2><p>
30   </p><p>
31
32   This structure describes a frequency band a wiphy
33   is able to operate in.
34</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="API-struct-ieee80211-sta-ht-cap.html">Prev</a>&#160;</td><td width="20%" align="center"><a accesskey="u" href="bk01ch01.html">Up</a></td><td width="40%" align="right">&#160;<a accesskey="n" href="API-enum-cfg80211-signal-type.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"><span class="phrase">struct ieee80211_sta_ht_cap</span>&#160;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&#160;<span class="phrase">enum cfg80211_signal_type</span></td></tr></table></div></body></html>
35