Message ID | 20220521201050.424197-1-a.fatoum@pengutronix.de (mailing list archive) |
---|---|
State | Accepted |
Commit | edcb185fa9c4f8fa1301f032fb503d2597a92b1e |
Headers | show |
Series | Bluetooth: hci_sync: use hci_skb_event() helper | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/checkpatch | success | Checkpatch PASS |
tedd_an/gitlint | success | Gitlint PASS |
tedd_an/subjectprefix | success | PASS |
tedd_an/buildkernel | success | Build Kernel PASS |
tedd_an/buildkernel32 | success | Build Kernel32 PASS |
tedd_an/incremental_build | success | Pass |
tedd_an/testrunnersetup | success | Test Runner Setup PASS |
tedd_an/testrunnerl2cap-tester | success | Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 493, Passed: 493 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersco-tester | success | Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersmp-tester | success | Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneruserchan-tester | success | Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0 |
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=644018 ---Test result--- Test Summary: CheckPatch PASS 0.83 seconds GitLint PASS 0.43 seconds SubjectPrefix PASS 0.27 seconds BuildKernel PASS 38.61 seconds BuildKernel32 PASS 34.38 seconds Incremental Build with patchesPASS 46.30 seconds TestRunner: Setup PASS 583.58 seconds TestRunner: l2cap-tester PASS 19.27 seconds TestRunner: bnep-tester PASS 6.91 seconds TestRunner: mgmt-tester PASS 119.04 seconds TestRunner: rfcomm-tester PASS 10.90 seconds TestRunner: sco-tester PASS 10.66 seconds TestRunner: smp-tester PASS 10.76 seconds TestRunner: userchan-tester PASS 7.29 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Marcel Holtmann <marcel@holtmann.org>: On Sat, 21 May 2022 22:10:50 +0200 you wrote: > This instance is the only opencoded version of the macro, so have it > follow suit. > > Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> > --- > net/bluetooth/hci_request.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - Bluetooth: hci_sync: use hci_skb_event() helper https://git.kernel.org/bluetooth/bluetooth-next/c/edcb185fa9c4 You are awesome, thank you!
diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c index 42c8047a9897..73b32be03698 100644 --- a/net/bluetooth/hci_request.c +++ b/net/bluetooth/hci_request.c @@ -261,7 +261,7 @@ void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen, if (skb_queue_empty(&req->cmd_q)) bt_cb(skb)->hci.req_flags |= HCI_REQ_START; - bt_cb(skb)->hci.req_event = event; + hci_skb_event(skb) = event; skb_queue_tail(&req->cmd_q, skb); }
This instance is the only opencoded version of the macro, so have it follow suit. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> --- net/bluetooth/hci_request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)