All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Bluetooth: btusb: Add 0x0bda:0x8771 Realtek 8761BUV devices
@ 2022-04-13 12:54 Ismael Luceno
  2022-04-15  6:03 ` bluez.test.bot
  2022-04-22  9:17 ` [PATCH] " Marcel Holtmann
  0 siblings, 2 replies; 3+ messages in thread
From: Ismael Luceno @ 2022-04-13 12:54 UTC (permalink / raw)
  To: linux-kernel, linux-bluetooth
  Cc: Ismael Luceno, Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz

Identifies as just "Realtek Semiconductor Corp."; it's used in many
adapters, e.g.:

- UGREEN CM390
- C-TECH BTD-01
- Orico BTA-508

Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
---
 drivers/bluetooth/btusb.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
index 2afbd87d77c9..07db720baaa0 100644
--- a/drivers/bluetooth/btusb.c
+++ b/drivers/bluetooth/btusb.c
@@ -490,6 +490,10 @@ MODULE_DEVICE_TABLE(usb, btusb_table);
 	{ USB_DEVICE(0x2550, 0x8761), .driver_info = BTUSB_REALTEK |
 						     BTUSB_WIDEBAND_SPEECH },
 
+	/* Additional Realtek 8761BUV Bluetooth devices */
+	{ USB_DEVICE(0x0bda, 0x8771), .driver_info = BTUSB_REALTEK |
+						     BTUSB_WIDEBAND_SPEECH },
+
 	/* Additional Realtek 8821AE Bluetooth devices */
 	{ USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
 	{ USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: Bluetooth: btusb: Add 0x0bda:0x8771 Realtek 8761BUV devices
  2022-04-13 12:54 [PATCH] Bluetooth: btusb: Add 0x0bda:0x8771 Realtek 8761BUV devices Ismael Luceno
@ 2022-04-15  6:03 ` bluez.test.bot
  2022-04-22  9:17 ` [PATCH] " Marcel Holtmann
  1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2022-04-15  6:03 UTC (permalink / raw)
  To: linux-bluetooth, ismael

[-- Attachment #1: Type: text/plain, Size: 1097 bytes --]

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=631879

---Test result---

Test Summary:
CheckPatch                    PASS      1.56 seconds
GitLint                       PASS      1.01 seconds
SubjectPrefix                 PASS      0.83 seconds
BuildKernel                   PASS      32.14 seconds
BuildKernel32                 PASS      28.58 seconds
Incremental Build with patchesPASS      40.22 seconds
TestRunner: Setup             PASS      473.15 seconds
TestRunner: l2cap-tester      PASS      16.01 seconds
TestRunner: bnep-tester       PASS      6.47 seconds
TestRunner: mgmt-tester       PASS      107.67 seconds
TestRunner: rfcomm-tester     PASS      8.18 seconds
TestRunner: sco-tester        PASS      7.99 seconds
TestRunner: smp-tester        PASS      7.93 seconds
TestRunner: userchan-tester   PASS      6.60 seconds



---
Regards,
Linux Bluetooth


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Bluetooth: btusb: Add 0x0bda:0x8771 Realtek 8761BUV devices
  2022-04-13 12:54 [PATCH] Bluetooth: btusb: Add 0x0bda:0x8771 Realtek 8761BUV devices Ismael Luceno
  2022-04-15  6:03 ` bluez.test.bot
@ 2022-04-22  9:17 ` Marcel Holtmann
  1 sibling, 0 replies; 3+ messages in thread
From: Marcel Holtmann @ 2022-04-22  9:17 UTC (permalink / raw)
  To: Ismael Luceno
  Cc: linux-kernel, linux-bluetooth, Johan Hedberg, Luiz Augusto von Dentz

Hi Ismael,

> Identifies as just "Realtek Semiconductor Corp."; it's used in many
> adapters, e.g.:
> 
> - UGREEN CM390
> - C-TECH BTD-01
> - Orico BTA-508
> 
> Signed-off-by: Ismael Luceno <ismael@iodev.co.uk>
> ---
> drivers/bluetooth/btusb.c | 4 ++++
> 1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
> index 2afbd87d77c9..07db720baaa0 100644
> --- a/drivers/bluetooth/btusb.c
> +++ b/drivers/bluetooth/btusb.c
> @@ -490,6 +490,10 @@ MODULE_DEVICE_TABLE(usb, btusb_table);
> 	{ USB_DEVICE(0x2550, 0x8761), .driver_info = BTUSB_REALTEK |
> 						     BTUSB_WIDEBAND_SPEECH },
> 
> +	/* Additional Realtek 8761BUV Bluetooth devices */
> +	{ USB_DEVICE(0x0bda, 0x8771), .driver_info = BTUSB_REALTEK |
> +						     BTUSB_WIDEBAND_SPEECH },
> +
> 	/* Additional Realtek 8821AE Bluetooth devices */
> 	{ USB_DEVICE(0x0b05, 0x17dc), .driver_info = BTUSB_REALTEK },
> 	{ USB_DEVICE(0x13d3, 0x3414), .driver_info = BTUSB_REALTEK },

please include /sys/kernel/debug/usb/devices part of this device in your commit message.

Regards

Marcel


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-04-22  9:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-13 12:54 [PATCH] Bluetooth: btusb: Add 0x0bda:0x8771 Realtek 8761BUV devices Ismael Luceno
2022-04-15  6:03 ` bluez.test.bot
2022-04-22  9:17 ` [PATCH] " Marcel Holtmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.