Message ID | 20250312060605.305-1-kx960506@163.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | share/hci: Fix data type in bt_hci_send_data | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/ScanBuild | success | Scan 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=942951 ---Test result--- Test Summary: CheckPatch PENDING 0.19 seconds GitLint PENDING 0.21 seconds BuildEll PASS 20.26 seconds BluezMake PASS 1445.77 seconds MakeCheck PASS 12.94 seconds MakeDistcheck PASS 156.61 seconds CheckValgrind PASS 212.16 seconds CheckSmatch PASS 282.15 seconds bluezmakeextell PASS 97.43 seconds IncrementalBuild PENDING 0.31 seconds ScanBuild PASS 854.52 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
diff --git a/src/shared/hci.c b/src/shared/hci.c index 07fdffc82..575254c09 100644 --- a/src/shared/hci.c +++ b/src/shared/hci.c @@ -620,7 +620,7 @@ bool bt_hci_send_data(struct bt_hci *hci, uint8_t type, uint16_t handle, switch (type) { case BT_H4_ACL_PKT: case BT_H4_SCO_PKT: - case BT_H4_EVT_PKT: + case BT_H4_ISO_PKT: break; default: return false;