Bluetooth: Kconfig: Fix order of default entries
The conditional defaults must come last in order to be properly processed. Change-Id: Id7a152ca1a1584935029e212d0dd8f37494d1cf4 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
parent
5629197b17
commit
c245b96249
2 changed files with 3 additions and 3 deletions
|
@ -13,8 +13,8 @@ config BLUETOOTH_CONTROLLER_DATA_LENGTH
|
|||
config BLUETOOTH_CONTROLLER_RX_BUFFERS
|
||||
prompt "Number of Rx buffers"
|
||||
int
|
||||
default 6 if BLUETOOTH_HCI_RAW
|
||||
default 1
|
||||
default 6 if BLUETOOTH_HCI_RAW
|
||||
range 1 10
|
||||
help
|
||||
Set the number of Rx PDUs to be buffered in the controller.
|
||||
|
@ -22,8 +22,8 @@ config BLUETOOTH_CONTROLLER_RX_BUFFERS
|
|||
config BLUETOOTH_CONTROLLER_TX_BUFFERS
|
||||
prompt "Number of Tx buffers"
|
||||
int
|
||||
default 7 if BLUETOOTH_HCI_RAW
|
||||
default 1
|
||||
default 7 if BLUETOOTH_HCI_RAW
|
||||
range 1 10
|
||||
help
|
||||
Set the number of Tx PDUs to be queued for transmission
|
||||
|
|
|
@ -84,8 +84,8 @@ config BLUETOOTH_UART_TO_HOST_DEV_NAME
|
|||
if BLUETOOTH_CONN || BLUETOOTH_HCI_RAW
|
||||
config BLUETOOTH_ACL_IN_COUNT
|
||||
int "Number of incoming ACL data buffers"
|
||||
default BLUETOOTH_CONTROLLER_RX_BUFFERS if BLUETOOTH_CONTROLLER
|
||||
default 6
|
||||
default BLUETOOTH_CONTROLLER_RX_BUFFERS if BLUETOOTH_CONTROLLER
|
||||
range 2 64
|
||||
help
|
||||
Number of buffers available for incoming ACL data.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue