Skip to content

Commit f22df42

Browse files
committed
nrf_wifi: Fix typo in variable name
Originally even the declaration had a typo, but that was fixed later, but not all usage has been fixed. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent 8595f73 commit f22df42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ enum nrf_wifi_status hal_rpu_ps_wake(struct nrf_wifi_hal_dev_ctx *hal_dev_ctx)
336336

337337
nrf_wifi_bal_rpu_ps_wake(hal_dev_ctx->bal_dev_ctx);
338338
#ifdef NRF_WIFI_RPU_RECOVERY
339-
hal_dev_ctx->is_wakup_now_asserted = true;
339+
hal_dev_ctx->is_wakeup_now_asserted = true;
340340
hal_dev_ctx->last_wakeup_now_asserted_time_ms =
341341
nrf_wifi_osal_time_get_curr_ms();
342342
#endif /* NRF_WIFI_RPU_RECOVERY */
@@ -409,7 +409,7 @@ static void hal_rpu_ps_sleep(unsigned long data)
409409

410410
nrf_wifi_bal_rpu_ps_sleep(hal_dev_ctx->bal_dev_ctx);
411411
#ifdef NRF_WIFI_RPU_RECOVERY
412-
hal_dev_ctx->is_wakup_now_asserted = false;
412+
hal_dev_ctx->is_wakeup_now_asserted = false;
413413
hal_dev_ctx->last_wakeup_now_deasserted_time_ms =
414414
nrf_wifi_osal_time_get_curr_ms();
415415
#endif /* NRF_WIFI_RPU_RECOVERY */

0 commit comments

Comments
 (0)