From 655078d1f867390ad7ed9eaa208994506511666b Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 20 Oct 2021 14:27:01 -0700 Subject: [PATCH] btdev: Use Linux Foundation as manufacturer This makes the emulator use Linux Foundation manufacturer id which shall be simpler to distinguish emulator instances since it is unlikely there will be other vendors using it. --- emulator/btdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emulator/btdev.c b/emulator/btdev.c index f28187362..3506124d6 100644 --- a/emulator/btdev.c +++ b/emulator/btdev.c @@ -6236,7 +6236,7 @@ struct btdev *btdev_create(enum btdev_type type, uint16_t id) btdev->type = type; btdev->id = id; - btdev->manufacturer = 63; + btdev->manufacturer = 1521; btdev->revision = 0x0000; switch (btdev->type) { -- 2.47.3