From 4efbbce69294916c874c0c7aa45d73d8246322fd Mon Sep 17 00:00:00 2001 From: Thomas Ebert Hansen Date: Fri, 29 Nov 2019 13:02:22 +0100 Subject: [PATCH] Bluetooth: controller: Fix settings dependency BT_CTLR_SETTINGS should not depend on BT_SETTINGS as this will prevent using settings system in the controller in a controller only build. (BT_SETTINGS depends on BT_HCI_HOST) Signed-off-by: Thomas Ebert Hansen --- subsys/bluetooth/controller/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/controller/Kconfig b/subsys/bluetooth/controller/Kconfig index 64552c81277..8d6a9089385 100644 --- a/subsys/bluetooth/controller/Kconfig +++ b/subsys/bluetooth/controller/Kconfig @@ -313,7 +313,7 @@ config BT_CTLR_TX_PWR_DYNAMIC_CONTROL config BT_CTLR_SETTINGS bool "Settings System" - depends on BT_SETTINGS + depends on SETTINGS help Enable use of settings system in controller.