|
@@ -61,6 +61,14 @@ u8 * hostapd_eid_vht_operation(struct hostapd_data *hapd, u8 *eid)
|
|
|
oper = (struct ieee80211_vht_operation *) pos;
|
|
|
os_memset(oper, 0, sizeof(*oper));
|
|
|
|
|
|
+ /*
|
|
|
+ * center freq = 5 GHz + (5 * index)
|
|
|
+ * So index 42 gives center freq 5.210 GHz
|
|
|
+ * which is channel 42 in 5G band
|
|
|
+ */
|
|
|
+ oper->vht_op_info_chan_center_freq_seg0_idx =
|
|
|
+ hapd->iconf->vht_oper_centr_freq_seg0_idx;
|
|
|
+
|
|
|
oper->vht_op_info_chwidth = hapd->iconf->vht_oper_chwidth;
|
|
|
|
|
|
/* VHT Basic MCS set comes from hw */
|