Skip to content

Commit 03aaf47

Browse files
committed
fw_if: src: Set Dynamic bandwidth signalling in init command
Based on Kconfig option, set Dynamic bandwidth signalling feature enabling/disabling in init command. Signed-off-by: Kapil Bhatt <[email protected]>
1 parent 74ae473 commit 03aaf47

File tree

1 file changed

+4
-0
lines changed
  • nrf_wifi/fw_if/umac_if/src

1 file changed

+4
-0
lines changed

nrf_wifi/fw_if/umac_if/src/cmd.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,10 @@ enum nrf_wifi_status umac_cmd_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx,
234234
umac_cmd_data->stbc_enable_in_ht = 1;
235235
#endif /* CONFIG_NRF_WIFI_RX_STBC_HT */
236236

237+
#ifdef CONFIG_NRF_WIFI_DYNAMIC_BANDWIDTH_SIGNALLING
238+
umac_cmd_data->dbs_war_ctrl = 1;
239+
#endif /* CONFIG_NRF_WIFI_DYNAMIC_BANDWIDTH_SIGNALLING */
240+
237241
status = nrf_wifi_hal_ctrl_cmd_send(fmac_dev_ctx->hal_dev_ctx,
238242
umac_cmd,
239243
(sizeof(*umac_cmd) + len));

0 commit comments

Comments
 (0)