Skip to content

Commit 139ce48

Browse files
krish2718kartben
authored andcommitted
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]>
1 parent 0950aa4 commit 139ce48

40 files changed

+6
-6
lines changed

MAINTAINERS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2203,7 +2203,7 @@ Release Notes:
22032203
collaborators:
22042204
- sachinthegreen
22052205
files:
2206-
- drivers/wifi/nrfwifi/
2206+
- drivers/wifi/nrf_wifi/
22072207
- dts/bindings/wifi/nordic,nrf70.yaml
22082208
- dts/bindings/wifi/nordic,nrf70-qspi.yaml
22092209
- 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
@@ -13,4 +13,4 @@ add_subdirectory_ifdef(CONFIG_WIFI_SIMPLELINK simplelink)
1313
add_subdirectory_ifdef(CONFIG_WIFI_WINC1500 winc1500)
1414
add_subdirectory_ifdef(CONFIG_WIFI_NXP nxp)
1515
add_subdirectory_ifdef(CONFIG_WIFI_AIROC infineon)
16-
add_subdirectory_ifdef(CONFIG_WIFI_NRF70 nrfwifi)
16+
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.

0 commit comments

Comments
 (0)