From a1b4896efe46772ac0f6c84976e1b17b9dd6dfae Mon Sep 17 00:00:00 2001 From: Vinayak Kariappa Chettimada Date: Fri, 9 Dec 2022 10:28:30 +0530 Subject: [PATCH] Bluetooth: Controller: Fix BT_LL_SW_LLCP_LEGACY compile error Fix compile error building application with BT_LL_SW_LLCP_LEGACY. Request Peer SCA command is not supported in legacy control procedure implementation. Relates to commit 76439d0ba4dd ("Bluetooth: controller: integrating SCA procedure and adding HCI API"). Signed-off-by: Vinayak Kariappa Chettimada --- subsys/bluetooth/controller/Kconfig.ll_sw_split | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/controller/Kconfig.ll_sw_split b/subsys/bluetooth/controller/Kconfig.ll_sw_split index e947e835c51..162f7adbe60 100644 --- a/subsys/bluetooth/controller/Kconfig.ll_sw_split +++ b/subsys/bluetooth/controller/Kconfig.ll_sw_split @@ -35,7 +35,7 @@ config BT_LLL_VENDOR_NORDIC select BT_CTLR_CTEINLINE_SUPPORT if HAS_HW_NRF_RADIO_DFE select BT_CTLR_CHAN_SEL_2_SUPPORT select BT_CTLR_MIN_USED_CHAN_SUPPORT - select BT_CTLR_SCA_UPDATE_SUPPORT + select BT_CTLR_SCA_UPDATE_SUPPORT if !BT_LL_SW_LLCP_LEGACY select BT_CTLR_DTM_HCI_SUPPORT select BT_CTLR_CONN_RSSI_SUPPORT