Skip to content

Commit 1540451

Browse files
committed
Fix typo that results in build error
umac_cmd_data->keepalive_period changed to umac_cmd_data->keep_alive_period
1 parent e269670 commit 1540451

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fw_if/umac_if/src/offload_raw_tx/fmac_cmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ enum nrf_wifi_status umac_cmd_off_raw_tx_init(struct nrf_wifi_fmac_dev_ctx *fmac
8989
umac_cmd_data->keep_alive_enable = KEEP_ALIVE_ENABLED;
9090
umac_cmd_data->keep_alive_period = NRF_WIFI_KEEPALIVE_PERIOD_S;
9191
nrf_wifi_osal_log_dbg("Keepalive enabled with period %d",
92-
umac_cmd_data->keepalive_period);
92+
umac_cmd_data->keep_alive_period);
9393
#endif /* NRF_WIFI_FEAT_KEEPALIVE */
9494

9595
umac_cmd_data->op_band = op_band;

fw_if/umac_if/src/radio_test/fmac_cmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ enum nrf_wifi_status umac_cmd_rt_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx
8989
umac_cmd_data->keep_alive_enable = KEEP_ALIVE_ENABLED;
9090
umac_cmd_data->keep_alive_period = NRF_WIFI_KEEPALIVE_PERIOD_S;
9191
nrf_wifi_osal_log_dbg("Keepalive enabled with period %d",
92-
umac_cmd_data->keepalive_period);
92+
umac_cmd_data->keep_alive_period);
9393
#endif /* NRF_WIFI_FEAT_KEEPALIVE */
9494

9595
umac_cmd_data->op_band = op_band;

fw_if/umac_if/src/system/fmac_cmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ enum nrf_wifi_status umac_cmd_sys_init(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ct
9595
umac_cmd_data->keep_alive_enable = KEEP_ALIVE_ENABLED;
9696
umac_cmd_data->keep_alive_period = NRF_WIFI_KEEPALIVE_PERIOD_S;
9797
nrf_wifi_osal_log_dbg("Keepalive enabled with period %d",
98-
umac_cmd_data->keepalive_period);
98+
umac_cmd_data->keep_alive_period);
9999
#endif /* NRF_WIFI_FEAT_KEEPALIVE */
100100

101101
nrf_wifi_osal_mem_cpy(umac_cmd_data->rx_buf_pools,

0 commit comments

Comments
 (0)