From e4d00337ade58d8bde6e569ad5ecafbad8730f72 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Tue, 28 Feb 2012 02:05:42 +0200 Subject: [PATCH] lib: Add missing host feature defines This patch add missing SSP and "Simultaneous LE & BR/EDR" feature bit definitions to hci.h. --- lib/hci.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/hci.h b/lib/hci.h index 1ea084afd..887a860af 100644 --- a/lib/hci.h +++ b/lib/hci.h @@ -276,7 +276,9 @@ enum { #define LMP_EXT_FEAT 0x80 /* Extended LMP features */ -#define LMP_HOST_LE 0x02 +#define LMP_HOST_SSP 0x01 +#define LMP_HOST_LE 0x02 +#define LMP_HOST_LE_BREDR 0x04 /* Link policies */ #define HCI_LP_RSWITCH 0x0001 -- 2.47.3