nrf_wifi: Move shim files from driver to module

The shim files should be part of the Zephyr module directory within
Zephyr, as they are coupled with the module implementation which os OS
agnostic.

Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
This commit is contained in:
Chaitanya Tata 2024-11-08 02:14:53 +05:30 committed by Benjamin Cabé
commit da26d02d63
8 changed files with 6 additions and 3 deletions

View file

@ -25,9 +25,6 @@ zephyr_library_sources_ifdef(CONFIG_NRF70_SR_COEX
)
zephyr_library_sources(
src/shim.c
src/work.c
src/timer.c
src/qspi/src/device.c
src/qspi/src/rpu_hw_if.c
src/qspi/src/ficr_prog.c

View file

@ -167,4 +167,10 @@ zephyr_library_sources_ifdef(CONFIG_NRF70_STA_MODE
${NRF_WIFI_DIR}/fw_if/umac_if/src/fmac_util.c
)
zephyr_library_sources(
shim.c
timer.c
work.c
)
target_link_libraries(zephyr_interface INTERFACE nrf-wifi-interface)