From f0c05140b92cca447cd55a93ad4de141d0f117f1 Mon Sep 17 00:00:00 2001 From: Paolo Sabatino Date: Thu, 9 Dec 2021 22:47:36 +0000 Subject: [PATCH] rtl8703bs: add chip type to list and info block --- drivers/bluetooth/btrtl.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/drivers/bluetooth/btrtl.c b/drivers/bluetooth/btrtl.c index ad4085eede4..2c227bf4e00 100644 --- a/drivers/bluetooth/btrtl.c +++ b/drivers/bluetooth/btrtl.c @@ -20,6 +20,7 @@ #define RTL_CHIP_8723CS_CG 3 #define RTL_CHIP_8723CS_VF 4 #define RTL_CHIP_8723CS_XX 5 +#define RTL_CHIP_8703BS 7 #define RTL_EPATCH_SIGNATURE "Realtech" #define RTL_ROM_LMP_3499 0x3499 #define RTL_ROM_LMP_8703B 0x8703 @@ -136,6 +137,17 @@ static const struct id_table ic_id_table[] = { .fw_name = "rtl_bt/rtl8723cs_xx_fw.bin", .cfg_name = "rtl_bt/rtl8723cs_xx_config" }, + /* 8703BS */ + { .match_flags = IC_MATCH_FL_LMPSUBV | IC_MATCH_FL_CHIP_TYPE | + IC_MATCH_FL_HCIBUS, + .lmp_subver = RTL_ROM_LMP_8703B, + .chip_type = RTL_CHIP_8703BS, + .hci_bus = HCI_UART, + .config_needed = true, + .has_rom_version = true, + .fw_name = "rtl_bt/rtl8723cs_xx_fw.bin", + .cfg_name = "rtl_bt/rtl8723cs_xx_config" }, + /* 8723D */ { IC_INFO(RTL_ROM_LMP_8723B, 0xd, 0x8, HCI_USB), .config_needed = true, -- 2.30.2