Ver código fonte

qcacld-3.0: Populate HE and VHT bandwidth information

Populate HE and VHT bandwidth information sent to OSIF
from lim.

Change-Id: I8568052ae9416c227d5cb4ab782fb52f65055872
CRs-Fixed: 3081152
Sandeep Puligilla 3 anos atrás
pai
commit
2a9ab797a5
1 arquivos alterados com 4 adições e 2 exclusões
  1. 4 2
      core/mac/src/pe/lim/lim_process_assoc_req_frame.c

+ 4 - 2
core/mac/src/pe/lim/lim_process_assoc_req_frame.c

@@ -2765,14 +2765,16 @@ static bool lim_fill_assoc_he_info(struct mac_context *mac_ctx,
 			else if (session_entry->ch_width == CH_WIDTH_40MHZ &&
 				 assoc_req->he_cap.chan_width_0 == 1)
 				assoc_ind->chan_info.info = MODE_11AX_HE40;
+			else
+				assoc_ind->chan_info.info = MODE_11AX_HE20;
 		} else {
 			if (session_entry->ch_width == CH_WIDTH_160MHZ &&
 				assoc_req->he_cap.chan_width_2 == 1)
 				assoc_ind->chan_info.info = MODE_11AX_HE160;
-			else if (session_entry->ch_width == CH_WIDTH_80MHZ &&
+			else if (session_entry->ch_width >= CH_WIDTH_80MHZ &&
 				 assoc_req->he_cap.chan_width_1 == 1)
 				assoc_ind->chan_info.info = MODE_11AX_HE80;
-			else if (session_entry->ch_width == CH_WIDTH_40MHZ &&
+			else if (session_entry->ch_width >= CH_WIDTH_40MHZ &&
 				 assoc_req->he_cap.chan_width_1 == 1)
 				assoc_ind->chan_info.info = MODE_11AX_HE40;
 			else