Skip to content

Commit 6de1934

Browse files
committed
treewide: nRF70 driver directory now renamed
Fix the name of the directory. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent d090dbc commit 6de1934

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

doc/nrf/drivers/wifi/nrf70_native.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Design overview
3434
***************
3535

3636
The nRF Wi-Fi driver follows an OS-agnostic design, and the driver implementation is split into OS-agnostic and OS (Zephyr)-specific code.
37-
The OS-agnostic code is located in the :file:`${ZEPHYR_BASE}/../modules/hal/nordic/drivers/nrf_wifi/` folder, and the Zephyr OS port is located in the :file:`${ZEPHYR_BASE}/drivers/wifi/nrfwifi/` folder.
37+
The OS-agnostic code is located in the :file:`${ZEPHYR_BASE}/../modules/hal/nordic/drivers/nrf_wifi/` folder, and the Zephyr OS port is located in the :file:`${ZEPHYR_BASE}/drivers/wifi/nrf_wifi/` folder.
3838

3939
The driver supports two modes of operation:
4040

@@ -82,7 +82,7 @@ The nRF Wi-Fi driver has the following configuration options:
8282
Kconfig configuration
8383
=====================
8484

85-
.. options-from-kconfig:: /../../../../../zephyr/drivers/wifi/nrfwifi/Kconfig.nrfwifi
85+
.. options-from-kconfig:: /../../../../../zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi
8686
:show-type:
8787

8888
Devicetree specification configuration

doc/nrf/drivers/wifi/nrf70_portable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ nRF Wi-Fi portable driver
66
The nRF Wi-Fi portable driver implements OS-agnostic code for the nRF70 FullMAC Series of devices.
77
This code can be used to implement OS-native drivers for the nRF70 Series devices.
88

9-
The Zephyr native driver implementation is located in the :file:`${ZEPHYR_BASE}/drivers/wifi/nrfwifi/` folder.
9+
The Zephyr native driver implementation is located in the :file:`${ZEPHYR_BASE}/drivers/wifi/nrf_wifi/` folder.
1010

1111
API documentation
1212
*****************

doc/nrf/protocols/wifi/advanced_modes/offloaded_raw_tx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Offloaded raw transmit API
4242
The offloaded raw transmit functionality of nRF70 Series ICs can be utilized by using the APIs provided by the driver.
4343
The API reference can be found at:
4444

45-
| Header file: :file:`zephyr/drivers/wifi/nrfwifi/off_raw_tx/off_raw_tx_api.h`
45+
| Header file: :file:`zephyr/drivers/wifi/nrf_wifi/off_raw_tx/off_raw_tx_api.h`
4646
4747

4848
See the :ref:`Offloaded raw transmit sample <wifi_offloaded_raw_tx_packet_sample>` to know more about the offloaded raw transmit API.

samples/wifi/offloaded_raw_tx/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <stdint.h>
1515
#include <stdbool.h>
1616
#include <stdlib.h>
17-
#include <zephyr/drivers/wifi/nrfwifi/off_raw_tx/off_raw_tx_api.h>
17+
#include <zephyr/drivers/wifi/nrf_wifi/off_raw_tx/off_raw_tx_api.h>
1818

1919
#ifdef CONFIG_GENERATE_MAC_ADDRESS
2020
#include <zephyr/random/random.h>

subsys/net/lib/nrf70_fw_ext/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ endif()
1010

1111
if(CONFIG_NRF_WIFI_PATCHES_EXT_FLASH_DISABLED)
1212
# The C source is same as that for built-in
13-
zephyr_library_sources(${ZEPHYR_BASE}/drivers/wifi/nrfwifi/src/fw_load.c)
13+
zephyr_library_sources(${ZEPHYR_BASE}/drivers/wifi/nrf_wifi/src/fw_load.c)
1414
else()
1515
zephyr_library_sources(ext_fw_load.c)
1616
if(CONFIG_NRF_WIFI_PATCHES_EXT_FLASH_XIP)
@@ -43,7 +43,7 @@ if(DEFINED CONFIG_NRF_WIFI_PATCHES_EXT_FLASH_DISABLED OR
4343
zephyr_include_directories(${gen_inc_dir})
4444
set(gen_dir ${gen_inc_dir}/nrf70_fw_patch)
4545
generate_inc_file_for_target(
46-
nrfwifi
46+
nrf_wifi
4747
${NRF70_PATCH}
4848
${gen_dir}/nrf70.bin.inc
4949
)

0 commit comments

Comments
 (0)