From d6d8c3193ab6f38c86b4724278009931dcbeeecc Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Fri, 6 Nov 2015 21:57:58 +0200 Subject: [PATCH] Bluetooth: Kconfig: Move BLUETOOTH_CONN selectors to a better place It's move intuitive to have the BLUETOOTH_CONN selectors right before the section for choosing options that depend on them. Change-Id: If3d1a1fcb9c78d715b502b58fba9293ca69d0835 Signed-off-by: Johan Hedberg --- net/bluetooth/Kconfig | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index 46e64fe705c..f8e2f1becda 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig @@ -25,20 +25,6 @@ menuconfig BLUETOOTH This option enables Bluetooth Low Energy support. if BLUETOOTH -config BLUETOOTH_CONN - bool - default n - -config BLUETOOTH_PERIPHERAL - bool "Peripheral Role support" - default n - select BLUETOOTH_CONN - -config BLUETOOTH_CENTRAL - bool "Central Role support" - default n - select BLUETOOTH_CONN - config BLUETOOTH_HCI_CMD_COUNT int "Number of HCI command buffers" default 2 @@ -73,6 +59,20 @@ config BLUETOOTH_MAX_EVT_LEN Commands. It is a 3 byte Command Complete header + 65 byte return parameters = 68 bytes in total. +config BLUETOOTH_PERIPHERAL + bool "Peripheral Role support" + default n + select BLUETOOTH_CONN + +config BLUETOOTH_CENTRAL + bool "Central Role support" + default n + select BLUETOOTH_CONN + +config BLUETOOTH_CONN + bool + default n + if BLUETOOTH_CONN config BLUETOOTH_ACL_IN_COUNT int "Number of incoming ACL data buffers"