From c73a6fd01782bae18956ec29cd4557aeb248292c Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 29 Oct 2015 17:40:04 +0200 Subject: [PATCH] Bluetooth: Adjust lower bound of HCI command size Currently the biggest required HCI command is HCI_LE_Generate_DHkey which needs 1 (H4 header) + 3 (cmd header) + 64 = 68 bytes. Change-Id: Ice142b7c68c1cb1571e03549bceb301d806bc453 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 31bab9b31cd..3290aa217b3 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig @@ -64,8 +64,8 @@ config BLUETOOTH_HCI_CMD_COUNT config BLUETOOTH_HCI_CMD_SIZE int "Size of HCI command buffers" - default 72 - range 72 260 + default 68 + range 68 260 help Maximum size of each HCI command buffer.