From: Matthew Hrehirchuk <mhreh594@xxxxxxxxxx> Date: Mon, 24 Feb 2025 16:19:00 -0700 Subject: [PATCH] Bluetooth: btusb: Add support for Realtek Bluetooth device 0x0489:0xe112 The Asus PRIME B650M-A AX6 II Micro ATX AM5 motherboard includes a 2-in-1 WiFi+Bluetooth module. However, the Bluetooth component isn't recognized by the btusb driver due to its missing device ID (0x0489:0xe112). This patch adds support for this device. Signed-off-by: Matthew Hrehirchuk <mhreh594@xxxxxxxxxx> --- drivers/bluetooth/btusb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 90966dfbd2781f..ef07e54e6ac2df 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -519,6 +519,10 @@ static const struct usb_device_id quirks_table[] = { BTUSB_WIDEBAND_SPEECH }, /* Realtek 8852BE Bluetooth devices */ + + { USB_DEVICE(0x0489, 0xe112), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x0cb8, 0xc559), .driver_info = BTUSB_REALTEK | BTUSB_WIDEBAND_SPEECH },