From fa5dfa13664f68dee5755b7f77be4ab5a85e0b0e Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Tue, 3 Nov 2015 11:31:01 +0200 Subject: [PATCH] Bluetooth: Kconfig: Make ACL buffer count ranges more reasonable We need at least 2 buffers in each direction in case of fragmentation, and there's no need to have such a low maximum count. Change-Id: Ie25f4ebb231176a855e9651cb896fa8b59279629 Signed-off-by: Johan Hedberg --- net/bluetooth/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index 3290aa217b3..95f6017f9dd 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig @@ -90,7 +90,7 @@ if BLUETOOTH_CONN config BLUETOOTH_ACL_IN_COUNT int "Number of incoming ACL data buffers" default 5 - range 1 16 + range 2 64 help Number of buffers available for incoming ACL data. @@ -106,7 +106,7 @@ config BLUETOOTH_ACL_IN_SIZE config BLUETOOTH_ACL_OUT_COUNT int "Number of incoming ACL data buffers" default 5 - range 1 16 + range 2 64 help Number of buffers available for incoming ACL data.