Skip to content

Commit 8595f73

Browse files
committed
nrf_wifi: Fix build failures
These are found during downstream testing, need to figure out why CI didn't catch these. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent e158fd3 commit 8595f73

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

drivers/nrf_wifi/fw_if/umac_if/src/event.c

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,11 @@ static enum nrf_wifi_status umac_event_ctrl_process(struct nrf_wifi_fmac_dev_ctx
188188
#endif /* !NRF70_RADIO_TEST && !NRF70_OFFLOADED_RAW_TX */
189189

190190
#ifdef CONFIG_NRF_WIFI_CMD_EVENT_LOG
191-
nrf_wifi_osal_log_info(f
192-
"%s: Event %d received from UMAC\n",
191+
nrf_wifi_osal_log_info("%s: Event %d received from UMAC\n",
193192
__func__,
194193
event_num);
195194
#else
196-
nrf_wifi_osal_log_dbg(f
197-
"%s: Event %d received from UMAC",
195+
nrf_wifi_osal_log_dbg("%s: Event %d received from UMAC",
198196
__func__,
199197
event_num);
200198
#endif /* CONFIG_NRF_WIFI_CMD_EVENT_LOG */
@@ -595,13 +593,11 @@ nrf_wifi_fmac_data_event_process(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx,
595593
event = ((struct nrf_wifi_umac_head *)umac_head)->cmd;
596594

597595
#ifdef CONFIG_NRF_WIFI_CMD_EVENT_LOG
598-
nrf_wifi_osal_log_info(f
599-
"%s: Event %d received from UMAC\n",
596+
nrf_wifi_osal_log_info("%s: Event %d received from UMAC\n",
600597
__func__,
601598
event);
602599
#else
603-
nrf_wifi_osal_log_dbg(f
604-
"%s: Event %d received from UMAC",
600+
nrf_wifi_osal_log_dbg("%s: Event %d received from UMAC",
605601
__func__,
606602
event);
607603
#endif /* CONFIG_NRF_WIFI_CMD_EVENT_LOG */

drivers/nrf_wifi/hw_if/hal/src/hal_api.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,7 @@ enum nrf_wifi_status hal_rpu_ps_wake(struct nrf_wifi_hal_dev_ctx *hal_dev_ctx)
376376
reg_val,
377377
rpu_ps_state_mask);
378378
#ifdef NRF_WIFI_RPU_RECOVERY
379-
nrf_wifi_osal_tasklet_schedule(,
380-
hal_dev_ctx->recovery_tasklet);
379+
nrf_wifi_osal_tasklet_schedule(hal_dev_ctx->recovery_tasklet);
381380
#endif /* NRF_WIFI_RPU_RECOVERY */
382381
goto out;
383382
}
@@ -386,8 +385,7 @@ enum nrf_wifi_status hal_rpu_ps_wake(struct nrf_wifi_hal_dev_ctx *hal_dev_ctx)
386385
did_rpu_had_sleep_opp(hal_dev_ctx);
387386
#endif /* NRF_WIFI_RPU_RECOVERY */
388387
#ifdef NRF_WIFI_RPU_RECOVERY_PS_STATE_DEBUG
389-
nrf_wifi_osal_log_info(,
390-
"%s: RPU PS state is AWAKE\n",
388+
nrf_wifi_osal_log_info("%s: RPU PS state is AWAKE\n",
391389
__func__);
392390
#endif /* NRF_WIFI_RPU_RECOVERY_PS_STATE_DEBUG */
393391

@@ -418,8 +416,7 @@ static void hal_rpu_ps_sleep(unsigned long data)
418416
hal_dev_ctx->rpu_ps_state = RPU_PS_STATE_ASLEEP;
419417

420418
#ifdef NRF_WIFI_RPU_RECOVERY_PS_STATE_DEBUG
421-
nrf_wifi_osal_log_info(,
422-
"%s: RPU PS state is ASLEEP\n",
419+
nrf_wifi_osal_log_info("%s: RPU PS state is ASLEEP\n",
423420
__func__);
424421
#endif /* NRF_WIFI_RPU_RECOVERY_PS_STATE_DEBUG */
425422
nrf_wifi_osal_spinlock_irq_rel(hal_dev_ctx->rpu_ps_lock,

0 commit comments

Comments
 (0)