rtlbtfw(8): Add support for Realtek 8852CE
Add the USB Vendor/Product ID (0x13d3:0x3612) for the new Realtek 8852CE drive to make sure it works. Signed-off-by: Ying Xu <fakeshadow1337@gmail.com> Reviewed by: pouria, wulf Pull Request: https://github.com/freebsd/freebsd-src/pull/2071
This commit is contained in:
committed by
Pouria Mousavizadeh Tehrani
parent
0bebad8d07
commit
2e93669827
@@ -100,6 +100,7 @@ const STRUCT_USB_HOST_ID ubt_rtl_devs[] =
|
|||||||
{ USB_VPI(0x13d3, 0x3587, 0) },
|
{ USB_VPI(0x13d3, 0x3587, 0) },
|
||||||
{ USB_VPI(0x13d3, 0x3586, 0) },
|
{ USB_VPI(0x13d3, 0x3586, 0) },
|
||||||
{ USB_VPI(0x13d3, 0x3592, 0) },
|
{ USB_VPI(0x13d3, 0x3592, 0) },
|
||||||
|
{ USB_VPI(0x13d3, 0x3612, 0) },
|
||||||
{ USB_VPI(0x0489, 0xe122, 0) },
|
{ USB_VPI(0x0489, 0xe122, 0) },
|
||||||
|
|
||||||
/* Realtek 8852BE Bluetooth devices */
|
/* Realtek 8852BE Bluetooth devices */
|
||||||
|
|||||||
@@ -83,6 +83,7 @@ static struct rtlbt_devid rtlbt_list[] = {
|
|||||||
{ .vendor_id = 0x13d3, .product_id = 0x3587 },
|
{ .vendor_id = 0x13d3, .product_id = 0x3587 },
|
||||||
{ .vendor_id = 0x13d3, .product_id = 0x3586 },
|
{ .vendor_id = 0x13d3, .product_id = 0x3586 },
|
||||||
{ .vendor_id = 0x13d3, .product_id = 0x3592 },
|
{ .vendor_id = 0x13d3, .product_id = 0x3592 },
|
||||||
|
{ .vendor_id = 0x13d3, .product_id = 0x3612 },
|
||||||
{ .vendor_id = 0x0489, .product_id = 0xe122 },
|
{ .vendor_id = 0x0489, .product_id = 0xe122 },
|
||||||
|
|
||||||
/* Realtek 8852BE Bluetooth devices */
|
/* Realtek 8852BE Bluetooth devices */
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ notify 100 {
|
|||||||
match "subsystem" "DEVICE";
|
match "subsystem" "DEVICE";
|
||||||
match "type" "ATTACH";
|
match "type" "ATTACH";
|
||||||
match "vendor" "0x13d3";
|
match "vendor" "0x13d3";
|
||||||
match "product" "(0x3587|0x3586|0x3592)";
|
match "product" "(0x3587|0x3586|0x3592|0x3612)";
|
||||||
action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
|
action "/usr/sbin/rtlbtfw -d $cdev -f /usr/local/share/rtlbt-firmware";
|
||||||
};
|
};
|
||||||
notify 100 {
|
notify 100 {
|
||||||
|
|||||||
Reference in New Issue
Block a user