Skip to content

Commit

Permalink
nrf_wifi: Fix firmware boot check on timeout
Browse files Browse the repository at this point in the history
[SHEL-3027] Fix for firmware boot check, not returning failure on
timeout.

Signed-off-by: Ajay Parida <[email protected]>
  • Loading branch information
ajayparida committed Aug 19, 2024
1 parent 3eb9429 commit 173f759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nrf_wifi/hw_if/hal/src/hal_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -1557,7 +1557,7 @@ enum nrf_wifi_status nrf_wifi_hal_fw_chk_boot(struct nrf_wifi_hal_dev_ctx *hal_d

hal_dev_ctx->curr_proc = rpu_proc;

while (mcu_ready_wait_count-- > 0) {
while (--mcu_ready_wait_count > 0) {
status = hal_rpu_mem_read(hal_dev_ctx,
(unsigned char *)&val,
addr,
Expand Down

0 comments on commit 173f759

Please sign in to comment.