Skip to content

Commit e92900c

Browse files
lumagVudentz
authored andcommitted
Bluetooth: qca: fix NV variant for one of WCN3950 SoCs
The QCA_WCN3950_SOC_ID_S should be using qca/cmnv13s.bin, rather than qca/cmnv13u.bin file. Correct the variant suffix to be used for this SoC ID. Fixes: d5712c5 ("Bluetooth: qca: add WCN3950 support") Reported-by: Wojciech Slenska <[email protected]> Closes: qualcomm-linux/meta-qcom#817 (comment) Signed-off-by: Dmitry Baryshkov <[email protected]> Signed-off-by: Luiz Augusto von Dentz <[email protected]>
1 parent 324ddde commit e92900c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/bluetooth/btqca.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate,
889889
if (le32_to_cpu(ver.soc_id) == QCA_WCN3950_SOC_ID_T)
890890
variant = "t";
891891
else if (le32_to_cpu(ver.soc_id) == QCA_WCN3950_SOC_ID_S)
892-
variant = "u";
892+
variant = "s";
893893

894894
snprintf(config.fwname, sizeof(config.fwname),
895895
"qca/cmnv%02x%s.bin", rom_ver, variant);

0 commit comments

Comments
 (0)