Diff between d61dcac1fc2fd6014fffb3a61fd15578c0960487 and cdc90de8a7046f1d2cc5a2d34b5bf0543bfb5406

Changed Files

File Additions Deletions Status
src/shared/hciemu.c +2 -2 modified

Full Patch

diff --git a/src/shared/hciemu.c b/src/shared/hciemu.c
index a15102d..e921740 100644
--- a/src/shared/hciemu.c
+++ b/src/shared/hciemu.c
@@ -195,7 +195,7 @@ static bool create_vhci(struct hciemu *hciemu)
 	const char *str;
 	int fd, i;
 
-	btdev = btdev_create(BTDEV_TYPE_BREDR, 0x00);
+	btdev = btdev_create(BTDEV_TYPE_BREDRLE, 0x00);
 	if (!btdev)
 		return false;
 
@@ -226,7 +226,7 @@ static bool create_stack(struct hciemu *hciemu)
 	struct bthost *bthost;
 	int sv[2];
 
-	btdev = btdev_create(BTDEV_TYPE_BREDR, 0x00);
+	btdev = btdev_create(BTDEV_TYPE_BREDRLE, 0x00);
 	if (!btdev)
 		return false;