Diff between b2a5fbc6ad695af96a9c7d4b7939079bbb3d2b56 and 5658a945b4f4152e7a3a955b02eeaa2275fafc66

Changed Files

File Additions Deletions Status
tools/parser/hci.c +7 -1 modified

Full Patch

diff --git a/tools/parser/hci.c b/tools/parser/hci.c
index be99504..5ef4599 100644
--- a/tools/parser/hci.c
+++ b/tools/parser/hci.c
@@ -50,7 +50,7 @@ static inline uint16_t get_manufacturer(void)
 	return (manufacturer == DEFAULT_COMPID ? parser.defcompid : manufacturer);
 }
 
-#define EVENT_NUM 55
+#define EVENT_NUM 61
 static char *event_str[EVENT_NUM + 1] = {
 	"Unknown",
 	"Inquiry Complete",
@@ -100,6 +100,7 @@ static char *event_str[EVENT_NUM + 1] = {
 	"Synchronous Connect Changed",
 	"Sniff Subrate",
 	"Extended Inquiry Result",
+	"Encryption Key Refresh Complete",
 	"Unknown",
 	"Unknown",
 	"Unknown",
@@ -108,6 +109,11 @@ static char *event_str[EVENT_NUM + 1] = {
 	"Unknown",
 	"Unknown",
 	"Link Supervision Timeout Change",
+	"Enhanced Flush Complete",
+	"Unknown",
+	"Unknown",
+	"Unknown",
+	"Remote Host Supported Features Notification",
 };
 
 #define CMD_LINKCTL_NUM 42