* [PATCH BlueZ] share/hci: Fix data type in bt_hci_send_data
@ 2025-03-12 6:11 michael_kong
2025-03-12 7:18 ` [BlueZ] " bluez.test.bot
2025-03-12 16:30 ` [PATCH BlueZ] " patchwork-bot+bluetooth
0 siblings, 2 replies; 4+ messages in thread
From: michael_kong @ 2025-03-12 6:11 UTC (permalink / raw)
To: linux-bluetooth; +Cc: michael_kong
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(-)
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;
--
2.29.1.windows.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* RE: [BlueZ] share/hci: Fix data type in bt_hci_send_data
2025-03-12 6:11 [PATCH BlueZ] share/hci: Fix data type in bt_hci_send_data michael_kong
@ 2025-03-12 7:18 ` bluez.test.bot
2025-03-12 16:30 ` [PATCH BlueZ] " patchwork-bot+bluetooth
1 sibling, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2025-03-12 7:18 UTC (permalink / raw)
To: linux-bluetooth, kx960506
[-- Attachment #1: Type: text/plain, Size: 1260 bytes --]
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH BlueZ] share/hci: Fix data type in bt_hci_send_data
2025-03-12 6:11 [PATCH BlueZ] share/hci: Fix data type in bt_hci_send_data michael_kong
2025-03-12 7:18 ` [BlueZ] " bluez.test.bot
@ 2025-03-12 16:30 ` patchwork-bot+bluetooth
1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2025-03-12 16:30 UTC (permalink / raw)
To: michael_kong; +Cc: 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!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH BlueZ] share/hci: Fix data type in bt_hci_send_data
@ 2025-03-11 7:56 Michael Kong
2025-03-11 8:21 ` [BlueZ] " bluez.test.bot
0 siblings, 1 reply; 4+ messages in thread
From: Michael Kong @ 2025-03-11 7:56 UTC (permalink / raw)
To: linux-bluetooth
From 44412287c2a00792d4c0fc2c36ee2514d7a3a71f Mon Sep 17 00:00:00 2001
From: michael_kong <michael_kong@realsil.com.cn>
Date: Tue, 11 Mar 2025 11:05:13 +0800
Subject: [PATCH] share/hci: Fix data type in bt_hci_send_data
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(-)
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;
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-03-12 16:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-12 6:11 [PATCH BlueZ] share/hci: Fix data type in bt_hci_send_data michael_kong
2025-03-12 7:18 ` [BlueZ] " bluez.test.bot
2025-03-12 16:30 ` [PATCH BlueZ] " patchwork-bot+bluetooth
-- strict thread matches above, loose matches on Subject: below --
2025-03-11 7:56 Michael Kong
2025-03-11 8:21 ` [BlueZ] " bluez.test.bot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.