Diff between 5ee722e3ea55c630ac1e540a934fc6258a0de72f and a530b1d2e555e65f3e03f7563f5b02e53197284a

Changed Files

File Additions Deletions Status
emulator/btdev.c +2 -2 modified

Full Patch

diff --git a/emulator/btdev.c b/emulator/btdev.c
index 1e94fc3..a9b225a 100644
--- a/emulator/btdev.c
+++ b/emulator/btdev.c
@@ -600,7 +600,7 @@ struct btdev *btdev_create(enum btdev_type type, uint16_t id)
 
 	switch (btdev->type) {
 	case BTDEV_TYPE_BREDRLE:
-		btdev->version = 0x08;
+		btdev->version = 0x09;
 		set_bredrle_features(btdev);
 		set_bredrle_commands(btdev);
 		break;
@@ -610,7 +610,7 @@ struct btdev *btdev_create(enum btdev_type type, uint16_t id)
 		set_bredr_commands(btdev);
 		break;
 	case BTDEV_TYPE_LE:
-		btdev->version = 0x08;
+		btdev->version = 0x09;
 		set_le_features(btdev);
 		set_le_commands(btdev);
 		break;