Skip to content

Commit 853f75a

Browse files
committed
nrf_wifi: Fix the directory name
Following the naming convention add an underscore and update path in the maintainers file too. Signed-off-by: Chaitanya Tata <[email protected]> (cherry picked from commit 139ce48)
1 parent 3b95b6a commit 853f75a

40 files changed

+6
-6
lines changed

MAINTAINERS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2185,7 +2185,7 @@ Release Notes:
21852185
collaborators:
21862186
- sachinthegreen
21872187
files:
2188-
- drivers/wifi/nrfwifi/
2188+
- drivers/wifi/nrf_wifi/
21892189
- dts/bindings/wifi/nordic,nrf70.yaml
21902190
- dts/bindings/wifi/nordic,nrf70-qspi.yaml
21912191
- dts/bindings/wifi/nordic,nrf70-spi.yaml

drivers/wifi/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ add_subdirectory_ifdef(CONFIG_WIFI_SIMPLELINK simplelink)
1010
add_subdirectory_ifdef(CONFIG_WIFI_WINC1500 winc1500)
1111
add_subdirectory_ifdef(CONFIG_WIFI_NXP nxp)
1212
add_subdirectory_ifdef(CONFIG_WIFI_AIROC infineon)
13-
add_subdirectory_ifdef(CONFIG_WIFI_NRF70 nrfwifi)
13+
add_subdirectory_ifdef(CONFIG_WIFI_NRF70 nrf_wifi)

drivers/wifi/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ source "drivers/wifi/esp_at/Kconfig.esp_at"
4242
source "drivers/wifi/esp32/Kconfig.esp32"
4343
source "drivers/wifi/nxp/Kconfig.nxp"
4444
source "drivers/wifi/infineon/Kconfig.airoc"
45-
source "drivers/wifi/nrfwifi/Kconfig.nrfwifi"
45+
source "drivers/wifi/nrf_wifi/Kconfig.nrfwifi"
4646

4747
endif # WIFI

drivers/wifi/nrfwifi/CMakeLists.txt renamed to drivers/wifi/nrf_wifi/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
zephyr_library_named(nrfwifi)
7+
zephyr_library_named(nrf_wifi)
88

99
set(OS_AGNOSTIC_BASE ${ZEPHYR_HAL_NORDIC_MODULE_DIR}/drivers/nrf_wifi)
1010
set(FW_BINS_BASE ${ZEPHYR_HAL_NORDIC_MODULE_DIR}/zephyr/blobs/wifi_fw_bins)
@@ -192,7 +192,7 @@ elseif(CONFIG_NRF_WIFI_PATCHES_BUILTIN)
192192
zephyr_include_directories(${gen_inc_dir})
193193
set(gen_dir ${gen_inc_dir}/nrf70_fw_patch)
194194
generate_inc_file_for_target(
195-
nrfwifi
195+
nrf_wifi
196196
${NRF70_PATCH}
197197
${gen_dir}/nrf70.bin.inc
198198
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)