Message ID | 20230915232139.3661778-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2,1/2] Bluetooth: hci_core: Fix build warnings | 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 | Gitlint PASS |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | warning | CheckSparse WARNING net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): |
tedd_an/CheckSmatch | warning | CheckSparse WARNING net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
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=784857 ---Test result--- Test Summary: CheckPatch PASS 1.72 seconds GitLint PASS 0.68 seconds SubjectPrefix PASS 0.25 seconds BuildKernel PASS 33.24 seconds CheckAllWarning PASS 36.14 seconds CheckSparse WARNING 41.19 seconds CheckSmatch WARNING 115.05 seconds BuildKernel32 PASS 31.70 seconds TestRunnerSetup PASS 488.47 seconds TestRunner_l2cap-tester PASS 29.48 seconds TestRunner_iso-tester PASS 58.00 seconds TestRunner_bnep-tester PASS 9.85 seconds TestRunner_mgmt-tester PASS 211.98 seconds TestRunner_rfcomm-tester PASS 15.07 seconds TestRunner_sco-tester PASS 18.45 seconds TestRunner_ioctl-tester PASS 16.89 seconds TestRunner_mesh-tester PASS 12.43 seconds TestRunner_smp-tester PASS 13.60 seconds TestRunner_userchan-tester PASS 10.41 seconds IncrementalBuild PASS 37.71 seconds Details ############################## Test: CheckSparse - WARNING Desc: Run sparse tool with linux kernel Output: net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): ############################## Test: CheckSmatch - WARNING Desc: Run smatch tool with source Output: net/bluetooth/hci_event.c: note: in included file (through include/net/bluetooth/hci_core.h): --- Regards, Linux Bluetooth
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index db4f28d68d71..5a7fb496297b 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -2617,7 +2617,8 @@ int hci_register_dev(struct hci_dev *hdev) if (id < 0) return id; - snprintf(hdev->name, sizeof(hdev->name), "hci%d", id); + snprintf(hdev->name, sizeof(hdev->name), "hci%u", + id ? id % HCI_MAX_ID : id); hdev->id = id; BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);