* [PATCH] Bluetooth: qca: fix NV variant for one of WCN3950 SoCs
@ 2025-04-01 15:04 Dmitry Baryshkov
2025-04-01 15:34 ` bluez.test.bot
2025-04-02 21:10 ` [PATCH] " patchwork-bot+bluetooth
0 siblings, 2 replies; 3+ messages in thread
From: Dmitry Baryshkov @ 2025-04-01 15:04 UTC (permalink / raw)
To: Marcel Holtmann, Luiz Augusto von Dentz, Dmitry Baryshkov
Cc: Luiz Augusto von Dentz, linux-bluetooth, linux-kernel,
Wojciech Slenska
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: 3b0e0839d9f2 ("Bluetooth: qca: add WCN3950 support")
Reported-by: Wojciech Slenska <wsl@trackunit.com>
Closes: https://github.com/qualcomm-linux/meta-qcom/pull/817#discussion_r2022866431
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
drivers/bluetooth/btqca.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bluetooth/btqca.c b/drivers/bluetooth/btqca.c
index 3d6778b95e0058beda3f0500b21caaef8e797d32..edefb9dc76aa1a019dc1e0ae06f4545b4ad3f96a 100644
--- a/drivers/bluetooth/btqca.c
+++ b/drivers/bluetooth/btqca.c
@@ -889,7 +889,7 @@ int qca_uart_setup(struct hci_dev *hdev, uint8_t baudrate,
if (le32_to_cpu(ver.soc_id) == QCA_WCN3950_SOC_ID_T)
variant = "t";
else if (le32_to_cpu(ver.soc_id) == QCA_WCN3950_SOC_ID_S)
- variant = "u";
+ variant = "s";
snprintf(config.fwname, sizeof(config.fwname),
"qca/cmnv%02x%s.bin", rom_ver, variant);
---
base-commit: eb4bc4b07f66f01618d9cb1aa4eaef59b1188415
change-id: 20250401-fix-rb1-bt-8b2f4dd7b711
Best regards,
--
Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: Bluetooth: qca: fix NV variant for one of WCN3950 SoCs
2025-04-01 15:04 [PATCH] Bluetooth: qca: fix NV variant for one of WCN3950 SoCs Dmitry Baryshkov
@ 2025-04-01 15:34 ` bluez.test.bot
2025-04-02 21:10 ` [PATCH] " patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: bluez.test.bot @ 2025-04-01 15:34 UTC (permalink / raw)
To: linux-bluetooth, dmitry.baryshkov
[-- Attachment #1: Type: text/plain, Size: 2029 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=948999
---Test result---
Test Summary:
CheckPatch PENDING 0.28 seconds
GitLint PENDING 0.20 seconds
SubjectPrefix PASS 0.13 seconds
BuildKernel PASS 24.59 seconds
CheckAllWarning PASS 26.75 seconds
CheckSparse PASS 29.99 seconds
BuildKernel32 PASS 23.96 seconds
TestRunnerSetup PASS 430.98 seconds
TestRunner_l2cap-tester PASS 21.07 seconds
TestRunner_iso-tester PASS 33.11 seconds
TestRunner_bnep-tester PASS 5.63 seconds
TestRunner_mgmt-tester FAIL 120.89 seconds
TestRunner_rfcomm-tester PASS 7.87 seconds
TestRunner_sco-tester PASS 12.49 seconds
TestRunner_ioctl-tester PASS 8.33 seconds
TestRunner_mesh-tester PASS 6.05 seconds
TestRunner_smp-tester PASS 7.20 seconds
TestRunner_userchan-tester PASS 4.95 seconds
IncrementalBuild PENDING 0.54 seconds
Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:
##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:
##############################
Test: TestRunner_mgmt-tester - FAIL
Desc: Run mgmt-tester with test-runner
Output:
Total: 490, Passed: 484 (98.8%), Failed: 2, Not Run: 4
Failed Test Cases
LL Privacy - Set Flags 3 (2 Devices to RL) Failed 0.169 seconds
LL Privacy - Set Device Flag 1 (Device Privacy) Failed 0.142 seconds
##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Bluetooth: qca: fix NV variant for one of WCN3950 SoCs
2025-04-01 15:04 [PATCH] Bluetooth: qca: fix NV variant for one of WCN3950 SoCs Dmitry Baryshkov
2025-04-01 15:34 ` bluez.test.bot
@ 2025-04-02 21:10 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+bluetooth @ 2025-04-02 21:10 UTC (permalink / raw)
To: Dmitry Baryshkov
Cc: marcel, luiz.dentz, lumag, luiz.von.dentz, linux-bluetooth,
linux-kernel, wsl
Hello:
This patch was applied to bluetooth/bluetooth-next.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:
On Tue, 01 Apr 2025 18:04:03 +0300 you wrote:
> 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: 3b0e0839d9f2 ("Bluetooth: qca: add WCN3950 support")
> Reported-by: Wojciech Slenska <wsl@trackunit.com>
> Closes: https://github.com/qualcomm-linux/meta-qcom/pull/817#discussion_r2022866431
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
>
> [...]
Here is the summary with links:
- Bluetooth: qca: fix NV variant for one of WCN3950 SoCs
https://git.kernel.org/bluetooth/bluetooth-next/c/87d48ed16c9f
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-04-02 21:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-01 15:04 [PATCH] Bluetooth: qca: fix NV variant for one of WCN3950 SoCs Dmitry Baryshkov
2025-04-01 15:34 ` bluez.test.bot
2025-04-02 21:10 ` [PATCH] " patchwork-bot+bluetooth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox