From 2b7556fea27e517338135e6cfa934222409d88ca Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 16 Jun 2023 14:35:16 +0100 Subject: [PATCH] testevdev: Correct typo in bus type for Xbox Series S|X via Bluetooth All Bluetooth devices are bus type 0x0005. Signed-off-by: Simon McVittie --- test/testevdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testevdev.c b/test/testevdev.c index 746d0af49..37e7cef0d 100644 --- a/test/testevdev.c +++ b/test/testevdev.c @@ -955,7 +955,7 @@ static const GuessTest guess_tests[] = .name = "Microsoft Xbox Series S|X Controller (model 1914) via Bluetooth", /* Physically the same device as 0003:045e:0b12 v050f above, * but some functionality is mapped differently */ - .bus_type = 0x0003, + .bus_type = 0x0005, .vendor_id = 0x045e, .product_id = 0x0b13, .version = 0x0515,