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 <Chaitanya.Tata@nordicsemi.no>
This commit is contained in:
Chaitanya Tata 2024-11-04 23:22:52 +05:30 committed by Benjamin Cabé
parent 0950aa47b1
commit 139ce48c8b
40 changed files with 6 additions and 6 deletions

View file

@ -2203,7 +2203,7 @@ Release Notes:
collaborators: collaborators:
- sachinthegreen - sachinthegreen
files: files:
- drivers/wifi/nrfwifi/ - drivers/wifi/nrf_wifi/
- dts/bindings/wifi/nordic,nrf70.yaml - dts/bindings/wifi/nordic,nrf70.yaml
- dts/bindings/wifi/nordic,nrf70-qspi.yaml - dts/bindings/wifi/nordic,nrf70-qspi.yaml
- dts/bindings/wifi/nordic,nrf70-spi.yaml - dts/bindings/wifi/nordic,nrf70-spi.yaml

View file

@ -13,4 +13,4 @@ add_subdirectory_ifdef(CONFIG_WIFI_SIMPLELINK simplelink)
add_subdirectory_ifdef(CONFIG_WIFI_WINC1500 winc1500) add_subdirectory_ifdef(CONFIG_WIFI_WINC1500 winc1500)
add_subdirectory_ifdef(CONFIG_WIFI_NXP nxp) add_subdirectory_ifdef(CONFIG_WIFI_NXP nxp)
add_subdirectory_ifdef(CONFIG_WIFI_AIROC infineon) add_subdirectory_ifdef(CONFIG_WIFI_AIROC infineon)
add_subdirectory_ifdef(CONFIG_WIFI_NRF70 nrfwifi) add_subdirectory_ifdef(CONFIG_WIFI_NRF70 nrf_wifi)

View file

@ -42,6 +42,6 @@ source "drivers/wifi/esp_at/Kconfig.esp_at"
source "drivers/wifi/esp32/Kconfig.esp32" source "drivers/wifi/esp32/Kconfig.esp32"
source "drivers/wifi/nxp/Kconfig.nxp" source "drivers/wifi/nxp/Kconfig.nxp"
source "drivers/wifi/infineon/Kconfig.airoc" source "drivers/wifi/infineon/Kconfig.airoc"
source "drivers/wifi/nrfwifi/Kconfig.nrfwifi" source "drivers/wifi/nrf_wifi/Kconfig.nrfwifi"
endif # WIFI endif # WIFI

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
# #
zephyr_library_named(nrfwifi) zephyr_library_named(nrf_wifi)
set(OS_AGNOSTIC_BASE ${ZEPHYR_HAL_NORDIC_MODULE_DIR}/drivers/nrf_wifi) set(OS_AGNOSTIC_BASE ${ZEPHYR_HAL_NORDIC_MODULE_DIR}/drivers/nrf_wifi)
set(FW_BINS_BASE ${ZEPHYR_HAL_NORDIC_MODULE_DIR}/zephyr/blobs/wifi_fw_bins) set(FW_BINS_BASE ${ZEPHYR_HAL_NORDIC_MODULE_DIR}/zephyr/blobs/wifi_fw_bins)
@ -192,7 +192,7 @@ elseif(CONFIG_NRF_WIFI_PATCHES_BUILTIN)
zephyr_include_directories(${gen_inc_dir}) zephyr_include_directories(${gen_inc_dir})
set(gen_dir ${gen_inc_dir}/nrf70_fw_patch) set(gen_dir ${gen_inc_dir}/nrf70_fw_patch)
generate_inc_file_for_target( generate_inc_file_for_target(
nrfwifi nrf_wifi
${NRF70_PATCH} ${NRF70_PATCH}
${gen_dir}/nrf70.bin.inc ${gen_dir}/nrf70.bin.inc
) )

View file

@ -12,7 +12,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <zephyr/kernel.h> #include <zephyr/kernel.h>
#include <zephyr/logging/log.h> #include <zephyr/logging/log.h>
#include <zephyr/drivers/wifi/nrfwifi/off_raw_tx/off_raw_tx_api.h> #include <zephyr/drivers/wifi/nrf_wifi/off_raw_tx/off_raw_tx_api.h>
#include <off_raw_tx.h> #include <off_raw_tx.h>
#include <fmac_api.h> #include <fmac_api.h>