summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2004-11-08 13:37:59 +0000
committerMarcel Holtmann <marcel@holtmann.org>2004-11-08 13:37:59 +0000
commit52e03fab5cb877505e6a4c391b5b0456726ed162 (patch)
tree539a5241dcdf572bc041c7e7010d3c52fbd7e5b6
parent9427f5dc51c6962692eecd7250f2a1130dbc49ad (diff)
Add version identifier for Bluetooth 2.0
-rw-r--r--src/hci.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/hci.c b/src/hci.c
index 23f890a6..5895563e 100644
--- a/src/hci.c
+++ b/src/hci.c
@@ -312,9 +312,10 @@ int hci_strtolm(char *str, unsigned int *val)
/* Version mapping */
static hci_map ver_map[] = {
- { "1.0b", 0x00 },
- { "1.1", 0x01 },
- { "1.2", 0x02 },
+ { "1.0b", 0x00 },
+ { "1.1", 0x01 },
+ { "1.2", 0x02 },
+ { "2.0", 0x03 },
{ NULL }
};