Message ID | 20200713154512.v2.1.I63705bf6abab9cb79c14f7959a59b201af2b8827@changeid (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] Bluetooth: btusb: add Realtek 8822CE to usb_device_id table | expand |
Hi Joseph, > This patch adds the Realtek 8822CE controller to the usb_device_id > table to support the wideband speech capability. > > Reviewed-by: alainm@chromium.org > Signed-off-by: Joseph Hwang <josephsih@chromium.org> > --- > > Changes in v2: > - Fixed the commit subject and message body. > > drivers/bluetooth/btusb.c | 4 ++++ > 1 file changed, 4 insertions(+) patch has been applied to bluetooth-next tree. Regards Marcel
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index faa863dd5d0a33..aa0bc9942afda9 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -359,6 +359,10 @@ static const struct usb_device_id blacklist_table[] = { { USB_VENDOR_AND_INTERFACE_INFO(0x8087, 0xe0, 0x01, 0x01), .driver_info = BTUSB_IGNORE }, + /* Realtek 8822CE Bluetooth devices */ + { USB_DEVICE(0x0bda, 0xb00c), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + /* Realtek Bluetooth devices */ { USB_VENDOR_AND_INTERFACE_INFO(0x0bda, 0xe0, 0x01, 0x01), .driver_info = BTUSB_REALTEK },