Skip to content

Commit 9f09f07

Browse files
committed
nrf71: Fix SAP set station failure
Setting VHT/HE/6GHz flags unconditionally is wrong. When the support for SAP is extended this needs to be properly set. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent f0b6706 commit 9f09f07

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

fw_if/umac_if/src/system/fmac_api.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,12 +1770,6 @@ enum nrf_wifi_status nrf_wifi_sys_fmac_add_sta(void *dev_ctx,
17701770
#ifdef NRF71_ON_IPC
17711771
add_sta_cmd->valid_fields |=
17721772
NRF_WIFI_CMD_NEW_STATION_HT_CAPABILITY_VALID;
1773-
add_sta_cmd->valid_fields |=
1774-
NRF_WIFI_CMD_NEW_STATION_VHT_CAPABILITY_VALID;
1775-
add_sta_cmd->valid_fields |=
1776-
NRF_WIFI_CMD_NEW_STATION_HE_CAPABILITY_VALID;
1777-
add_sta_cmd->valid_fields |=
1778-
NRF_WIFI_CMD_NEW_STATION_6GHZ_CAPABILITY_VALID;
17791773
#else
17801774
if (!nrf_wifi_util_is_arr_zero(add_sta_info->ht_capability,
17811775
sizeof(add_sta_info->ht_capability))) {

0 commit comments

Comments
 (0)