From: Johan Hedberg Date: Thu, 31 Jan 2013 20:04:00 +0000 (-0600) Subject: shared: Create BR/EDR/LE device type by default X-Git-Tag: android-x86-4.4-r3~8578 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=cdc90de8a7046f1d2cc5a2d34b5bf0543bfb5406;p=android-x86%2Fexternal-bluetooth-bluez.git shared: Create BR/EDR/LE device type by default --- diff --git a/src/shared/hciemu.c b/src/shared/hciemu.c index a15102d99..e92174092 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;