Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wifi: Fixes for recovery stress tests #17294

Merged
merged 3 commits into from
Sep 16, 2024
Merged
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
3 changes: 1 addition & 2 deletions drivers/wifi/nrf700x/src/fmac_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,6 @@ enum nrf_wifi_status nrf_wifi_fmac_dev_add_zep(struct nrf_wifi_drv_priv_zep *drv
goto err;
}

k_mutex_init(&rpu_ctx_zep->rpu_lock);

return status;
err:
if (rpu_ctx) {
Expand Down Expand Up @@ -782,6 +780,7 @@ static int nrf_wifi_drv_main_zep(const struct device *dev)
nrf_wifi_scan_timeout_work);
#endif /* CONFIG_NRF700X_RADIO_TEST */

k_mutex_init(&rpu_drv_priv_zep.rpu_ctx_zep.rpu_lock);
return 0;
#ifdef CONFIG_NRF700X_RADIO_TEST
fmac_deinit:
Expand Down
1 change: 1 addition & 0 deletions drivers/wifi/nrf700x/src/wifi_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -909,6 +909,7 @@ static int nrf_wifi_util_dump_rpu_stats(const struct shell *shell,

ret = 0;
unlock:
k_mutex_unlock(&ctx->rpu_lock);
return ret;
}
#endif /* CONFIG_NRF700X_RADIO_TEST */
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ manifest:
- name: nrfxlib
repo-path: sdk-nrfxlib
path: nrfxlib
revision: 0d57997cfc6fabd9c2ddec8cbe68cdcc228ae74d
revision: 10f7478f83bcbbddd4213431b3dbe48efff88db5
- name: trusted-firmware-m
repo-path: sdk-trusted-firmware-m
path: modules/tee/tf-m/trusted-firmware-m
Expand Down
Loading