summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-06-16 09:00:30 +0000
committerMarcel Holtmann <marcel@holtmann.org>2006-06-16 09:00:30 +0000
commit5ed11d784fcfa59254246bd401d4d1142bb5b9cb (patch)
treef64d8941bcdd2cf6b3e661b69055d2dc0ec5092c
parentbe9f5bb2d5ec08fbc07d95a72b9c11b0ed51ead7 (diff)
Add missing placeholders for feature bits
-rw-r--r--src/hci.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/hci.c b/src/hci.c
index d5d7124f..977c60eb 100644
--- a/src/hci.c
+++ b/src/hci.c
@@ -593,9 +593,23 @@ static hci_map lmp_features_map[8][9] = {
},
{ /* Byte 6 */
{ "<extended inquiry>", LMP_EXT_INQ }, /* Bit 0 */
+ { "<no. 49>", 0x02 }, /* Bit 1 */
+ { "<no. 50>", 0x04 }, /* Bit 2 */
+ { "<no. 51>", 0x08 }, /* Bit 3 */
+ { "<no. 52>", 0x10 }, /* Bit 4 */
+ { "<no. 53>", 0x20 }, /* Bit 5 */
+ { "<no. 54>", 0x40 }, /* Bit 6 */
+ { "<no. 55>", 0x80 }, /* Bit 7 */
{ NULL }
},
{ /* Byte 7 */
+ { "<no. 56>", 0x01 }, /* Bit 1 */
+ { "<no. 57>", 0x02 }, /* Bit 1 */
+ { "<no. 58>", 0x04 }, /* Bit 2 */
+ { "<no. 59>", 0x08 }, /* Bit 3 */
+ { "<no. 60>", 0x10 }, /* Bit 4 */
+ { "<no. 61>", 0x20 }, /* Bit 5 */
+ { "<no. 62>", 0x40 }, /* Bit 6 */
{ "<extended features>",LMP_EXT_FEAT }, /* Bit 7 */
{ NULL }
},