From 0acebf713557bfa45cd028e90a27eba890b86995 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Mon, 30 Jun 2025 16:18:00 +0200 Subject: [PATCH] drivers/bluetooth/userchan: Remove NATIVE_APPLICATION support It is not possible to build anymore in that mode, so we do not need to support it in this driver cmake files. Signed-off-by: Alberto Escolar Piedras --- drivers/bluetooth/hci/CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/bluetooth/hci/CMakeLists.txt b/drivers/bluetooth/hci/CMakeLists.txt index 35c97fa79b8..82c6b590d02 100644 --- a/drivers/bluetooth/hci/CMakeLists.txt +++ b/drivers/bluetooth/hci/CMakeLists.txt @@ -54,9 +54,5 @@ zephyr_library_sources_ifdef(CONFIG_BT_H4_NXP_CTLR hci_nxp_setup.c) if(CONFIG_BT_USERCHAN) zephyr_library_sources(userchan.c) - if (CONFIG_NATIVE_LIBRARY) - target_sources(native_simulator INTERFACE userchan_bottom.c) - else() - zephyr_library_sources(userchan_bottom.c) - endif() + target_sources(native_simulator INTERFACE userchan_bottom.c) endif()