lib: Fix HCI_MAX_ACL_SIZE
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Wed, 22 Sep 2021 20:48:43 +0000 (13:48 -0700)
committerAyush Garg <ayush.garg@samsung.com>
Fri, 11 Mar 2022 13:38:37 +0000 (19:08 +0530)
HCI_MAX_ACL_SIZE actually includes the maximum frames in AMP controller
so this changes it to properly define the max ACL frames on non-AMP
controllers and introduces a dedicated define for AMP controller as
HCI_MAX_AMP_SIZE.

Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
lib/hci.h

index a6f6326..fdc0f3e 100755 (executable)
--- a/lib/hci.h
+++ b/lib/hci.h
@@ -21,10 +21,11 @@ extern "C" {
 
 #define HCI_MAX_DEV    16
 
-#define HCI_MAX_ACL_SIZE       (1492 + 4)
+#define HCI_MAX_AMP_SIZE       (1492 + 4)
+#define HCI_MAX_ACL_SIZE       1024
 #define HCI_MAX_SCO_SIZE       255
 #define HCI_MAX_EVENT_SIZE     260
-#define HCI_MAX_FRAME_SIZE     (HCI_MAX_ACL_SIZE + 4)
+#define HCI_MAX_FRAME_SIZE     (HCI_MAX_AMP_SIZE + 4)
 
 /* HCI dev events */
 #define HCI_DEV_REG    1