Message ID | 20250312061128.1084-1-kx960506@163.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e3b2759634d4bd244c2090a96c76aef5a118c93d |
Headers | show |
Series | [BlueZ] 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=942953 ---Test result--- Test Summary: CheckPatch PENDING 0.24 seconds GitLint PENDING 0.19 seconds BuildEll PASS 20.46 seconds BluezMake PASS 1582.06 seconds MakeCheck PASS 12.73 seconds MakeDistcheck PASS 158.51 seconds CheckValgrind PASS 213.13 seconds CheckSmatch PASS 284.56 seconds bluezmakeextell PASS 97.98 seconds IncrementalBuild PENDING 0.29 seconds ScanBuild PASS 869.32 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
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 12 Mar 2025 14:11:28 +0800 you wrote: > The data type in bt_hci_send_data shall be ACL, SCO or ISO. > --- > src/shared/hci.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [BlueZ] share/hci: Fix data type in bt_hci_send_data https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=e3b2759634d4 You are awesome, thank you!
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;