|
7 | 7 | /** @file
|
8 | 8 | * @brief nRF70 Bare Metal initialization.
|
9 | 9 | */
|
10 |
| -#ifdef CONFIG_NRF70_RANDOM_MAC_ADDRESS |
11 |
| -#include <zephyr/random/random.h> |
12 |
| -#endif /* CONFIG_NRF70_RANDOM_MAC_ADDRESS */ |
13 |
| - |
14 | 10 | #include "nrf70_bm_lib.h"
|
15 | 11 | #include "nrf70_bm_core.h"
|
16 | 12 |
|
@@ -508,11 +504,12 @@ int nrf70_fmac_init(void)
|
508 | 504 | }
|
509 | 505 |
|
510 | 506 | #ifdef CONFIG_NRF70_RANDOM_MAC_ADDRESS
|
511 |
| -static void generate_random_mac_address(uint8_t *mac_addr) |
| 507 | +static void generate_random_mac_address(void *opriv, |
| 508 | + uint8_t *mac_addr) |
512 | 509 | {
|
513 | 510 | // For simplicty use Zephyr API to generate random number
|
514 | 511 | for (int i = 0; i < 6; i++) {
|
515 |
| - mac_addr[i] = sys_rand8_get(); |
| 512 | + mac_addr[i] = nrf_wifi_osal_rand8_get(opriv); |
516 | 513 | }
|
517 | 514 |
|
518 | 515 | // Set the locally administered bit (bit 1 of the first byte)
|
@@ -564,7 +561,7 @@ enum nrf_wifi_status nrf_wifi_get_mac_addr(struct nrf70_wifi_vif_bm *vif,
|
564 | 561 |
|
565 | 562 | memcpy(vif->mac_addr, fixed_mac_addr, NR70_MAC_ADDR_LEN);
|
566 | 563 | #elif CONFIG_NRF70_RANDOM_MAC_ADDRESS
|
567 |
| - generate_random_mac_address(vif->mac_addr); |
| 564 | + generate_random_mac_address(nrf70_bm_priv.fmac_priv->opriv, vif->mac_addr); |
568 | 565 | #elif CONFIG_NRF70_OTP_MAC_ADDRESS
|
569 | 566 | status = nrf_wifi_fmac_otp_mac_addr_get(rpu_ctx,
|
570 | 567 | vif->vif_idx,
|
|
0 commit comments