From 68773aa74e5cfe8b4e7b2bdd8927186033fb6c36 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Wed, 27 May 2015 21:26:49 +0300 Subject: [PATCH] Bluetooth: Fix CONFIG_BLUETOOTH_DEBUG_UART dependency The BLUETOOTH_DEBUG_UART config option should depend on BLUETOOTH_UART and also be sorted after it in the hierarchy. Change-Id: I3e049e52c2e353cd0c6f1a99ca8934a289e0cce8 Signed-off-by: Johan Hedberg --- drivers/bluetooth/Kconfig | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index b34c396c7d6..cbce8c7957d 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig @@ -36,15 +36,6 @@ menu "Bluetooth UART Options" depends on BLUETOOTH -config BLUETOOTH_DEBUG_UART - bool - prompt "Bluetooth UART driver debug" - depends on BLUETOOTH_DEBUG - default n - help - This option enables debug support for Bluetooth UART - driver - config BLUETOOTH_UART bool prompt "Bluetooth UART driver" @@ -54,4 +45,13 @@ config BLUETOOTH_UART help Enable Bluetooth UART driver. +config BLUETOOTH_DEBUG_UART + bool + prompt "Bluetooth UART driver debug" + depends on BLUETOOTH_DEBUG && BLUETOOTH_UART + default n + help + This option enables debug support for Bluetooth UART + driver + endmenu