Message ID | 20231211164020.173253-2-francesco@dolcini.it |
---|---|
State | New |
Headers | show |
Series | Bluetooth: fix recv_buf() return value | expand |
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=808866 ---Test result--- Test Summary: CheckPatch PASS 1.80 seconds GitLint FAIL 1.16 seconds SubjectPrefix PASS 0.37 seconds BuildKernel PASS 27.16 seconds CheckAllWarning PASS 30.20 seconds CheckSparse PASS 35.43 seconds CheckSmatch PASS 97.81 seconds BuildKernel32 PASS 28.38 seconds TestRunnerSetup PASS 418.27 seconds TestRunner_l2cap-tester PASS 22.95 seconds TestRunner_iso-tester PASS 48.12 seconds TestRunner_bnep-tester PASS 6.96 seconds TestRunner_mgmt-tester PASS 164.48 seconds TestRunner_rfcomm-tester PASS 10.81 seconds TestRunner_sco-tester PASS 14.49 seconds TestRunner_ioctl-tester PASS 11.96 seconds TestRunner_mesh-tester PASS 8.85 seconds TestRunner_smp-tester PASS 9.78 seconds TestRunner_userchan-tester PASS 7.24 seconds IncrementalBuild PASS 34.43 seconds Details ############################## Test: GitLint - FAIL Desc: Run gitlint Output: [v2,1/3] Bluetooth: btnxpuart: fix recv_buf() return value WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 20: B1 Line exceeds max length (97>80): " WARNING: CPU: 0 PID: 37 at drivers/tty/serdev/serdev-ttyport.c:37 ttyport_receive_buf+0xd8/0xf8" 34: B1 Line exceeds max length (82>80): "Closes: https://lore.kernel.org/all/ZWEIhcUXfutb5SY6@francesco-nb.int.toradex.com/" [v2,2/3] Bluetooth: btmtkuart: fix recv_buf() return value WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 11: B1 Line exceeds max length (82>80): "Link: https://lore.kernel.org/all/087be419-ec6b-47ad-851a-5e1e3ea5cfcc@kernel.org/" --- Regards, Linux Bluetooth
diff --git a/drivers/bluetooth/btnxpuart.c b/drivers/bluetooth/btnxpuart.c index b7e66b7ac570..951fe3014a3f 100644 --- a/drivers/bluetooth/btnxpuart.c +++ b/drivers/bluetooth/btnxpuart.c @@ -1276,11 +1276,10 @@ static int btnxpuart_receive_buf(struct serdev_device *serdev, const u8 *data, if (IS_ERR(nxpdev->rx_skb)) { int err = PTR_ERR(nxpdev->rx_skb); /* Safe to ignore out-of-sync bootloader signatures */ - if (is_fw_downloading(nxpdev)) - return count; - bt_dev_err(nxpdev->hdev, "Frame reassembly failed (%d)", err); + if (!is_fw_downloading(nxpdev)) + bt_dev_err(nxpdev->hdev, "Frame reassembly failed (%d)", err); nxpdev->rx_skb = NULL; - return err; + return count; } if (!is_fw_downloading(nxpdev)) nxpdev->hdev->stat.byte_rx += count;