Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fw_if/umac_if/src/offload_raw_tx/fmac_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ enum nrf_wifi_status umac_cmd_off_raw_tx_init(struct nrf_wifi_fmac_dev_ctx *fmac
umac_cmd_data->keep_alive_enable = KEEP_ALIVE_ENABLED;
umac_cmd_data->keep_alive_period = NRF_WIFI_KEEPALIVE_PERIOD_S;
nrf_wifi_osal_log_dbg("Keepalive enabled with period %d",
umac_cmd_data->keepalive_period);
umac_cmd_data->keep_alive_period);
#endif /* NRF_WIFI_FEAT_KEEPALIVE */

umac_cmd_data->op_band = op_band;
Expand Down
2 changes: 1 addition & 1 deletion fw_if/umac_if/src/radio_test/fmac_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ enum nrf_wifi_status umac_cmd_rt_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx
umac_cmd_data->keep_alive_enable = KEEP_ALIVE_ENABLED;
umac_cmd_data->keep_alive_period = NRF_WIFI_KEEPALIVE_PERIOD_S;
nrf_wifi_osal_log_dbg("Keepalive enabled with period %d",
umac_cmd_data->keepalive_period);
umac_cmd_data->keep_alive_period);
#endif /* NRF_WIFI_FEAT_KEEPALIVE */

umac_cmd_data->op_band = op_band;
Expand Down
2 changes: 1 addition & 1 deletion fw_if/umac_if/src/system/fmac_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ enum nrf_wifi_status umac_cmd_sys_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ct
umac_cmd_data->keep_alive_enable = KEEP_ALIVE_ENABLED;
umac_cmd_data->keep_alive_period = NRF_WIFI_KEEPALIVE_PERIOD_S;
nrf_wifi_osal_log_dbg("Keepalive enabled with period %d",
umac_cmd_data->keepalive_period);
umac_cmd_data->keep_alive_period);
#endif /* NRF_WIFI_FEAT_KEEPALIVE */

nrf_wifi_osal_mem_cpy(umac_cmd_data->rx_buf_pools,
Expand Down