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

Misc fixes #29

Merged
merged 2 commits into from
Dec 11, 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
1 change: 1 addition & 0 deletions nrf70_bm_lib/include/nrf70_bm_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ struct nrf70_regulatory_info {
* configurations including the download of the firmware patch for nRF70 device.
*
* @param[in] mac_addr MAC address of the device.
* @param[in] reg_info Regulatory information.
*
* @retval 0 If the operation was successful.
* @retval -1 If the operation failed.
Expand Down
2 changes: 1 addition & 1 deletion nrf70_bm_lib/source/nrf70_bm_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ enum nrf_wifi_status nrf_wifi_get_mac_addr(struct nrf70_wifi_vif_bm *vif,
enum nrf_wifi_status status = NRF_WIFI_STATUS_FAIL;
#ifdef CONFIG_NRF70_OTP_MAC_ADDRESS
void *rpu_ctx = nrf70_bm_priv.rpu_ctx_bm.rpu_ctx;
#endif /* CONFIG_NRF70_RANDOM_MAC_ADDRESS */
#endif /* CONFIG_NRF70_OTP_MAC_ADDRESS */
struct nrf_wifi_fmac_priv *fmac_priv = nrf70_bm_priv.fmac_priv;
unsigned char mac_addr_str[13];
#ifdef CONFIG_NRF70_FIXED_MAC_ADDRESS_ENABLED
Expand Down
Loading