Skip to content

Commit d916c8a

Browse files
committed
[nrf fromlist] drivers: wifi: nrf_wifi: Allow off channel TX for probe responses
For frames sent down by supplicant in station mode, inform RPU to allow off-channel transmission. This is needed for sending P2P probe responses. Upstream PR #: 97183 Signed-off-by: Ravi Dondaputi <[email protected]>
1 parent aaeeeb5 commit d916c8a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/wifi/nrf_wifi/src/wpa_supp_if.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1435,6 +1435,10 @@ int nrf_wifi_nl80211_send_mlme(void *if_priv, const u8 *data,
14351435
goto out;
14361436
}
14371437

1438+
if (vif_ctx_zep->if_type == NRF_WIFI_IFTYPE_STATION) {
1439+
offchanok = 1;
1440+
}
1441+
14381442
if (offchanok) {
14391443
mgmt_tx_info->nrf_wifi_flags |= NRF_WIFI_CMD_FRAME_OFFCHANNEL_TX_OK;
14401444
}

0 commit comments

Comments
 (0)