public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 0/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY
@ 2025-06-03  8:53 Magdalena Kasenberg
  2025-06-03  8:53 ` [PATCH BlueZ 1/1] " Magdalena Kasenberg
  2025-06-03 17:30 ` [PATCH BlueZ 0/1] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 4+ messages in thread
From: Magdalena Kasenberg @ 2025-06-03  8:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Magdalena Kasenberg

Hello,

This patch fixes the bit ID assigned to the HCI_LE_Read_ISO_Link_QUALITY command to match the value defined in Supported_Commands table in the Bluetooth Core Specification.

Best regards,
Magda

Magdalena Kasenberg (1):
  monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY

 monitor/bt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH BlueZ 1/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY
  2025-06-03  8:53 [PATCH BlueZ 0/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY Magdalena Kasenberg
@ 2025-06-03  8:53 ` Magdalena Kasenberg
  2025-06-03 10:33   ` bluez.test.bot
  2025-06-03 17:30 ` [PATCH BlueZ 0/1] " patchwork-bot+bluetooth
  1 sibling, 1 reply; 4+ messages in thread
From: Magdalena Kasenberg @ 2025-06-03  8:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Magdalena Kasenberg

Fix the bit ID of the HCI_LE_Read_ISO_Link_QUALITY command to match
the assigned value defined in Supported_Commands table in the Bluetooth
Core Specification.
---
 monitor/bt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/monitor/bt.h b/monitor/bt.h
index bc84d6b94..dd67750dc 100644
--- a/monitor/bt.h
+++ b/monitor/bt.h
@@ -2920,7 +2920,7 @@ struct bt_hci_cmd_le_set_host_feature {
 } __attribute__ ((packed));
 
 #define BT_HCI_CMD_LE_READ_ISO_LINK_QUALITY	0x2075
-#define BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY	BT_HCI_CMD_BIT(45, 1)
+#define BT_HCI_BIT_LE_READ_ISO_LINK_QUALITY	BT_HCI_CMD_BIT(44, 2)
 struct bt_hci_cmd_le_read_iso_link_quality {
 	uint16_t handle;
 } __attribute__ ((packed));
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY
  2025-06-03  8:53 ` [PATCH BlueZ 1/1] " Magdalena Kasenberg
@ 2025-06-03 10:33   ` bluez.test.bot
  0 siblings, 0 replies; 4+ messages in thread
From: bluez.test.bot @ 2025-06-03 10:33 UTC (permalink / raw)
  To: linux-bluetooth, magdalena.kasenberg

[-- Attachment #1: Type: text/plain, Size: 1261 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=968220

---Test result---

Test Summary:
CheckPatch                    PENDING   0.26 seconds
GitLint                       PENDING   0.26 seconds
BuildEll                      PASS      20.20 seconds
BluezMake                     PASS      2829.36 seconds
MakeCheck                     PASS      20.00 seconds
MakeDistcheck                 PASS      205.88 seconds
CheckValgrind                 PASS      277.35 seconds
CheckSmatch                   PASS      299.53 seconds
bluezmakeextell               PASS      127.70 seconds
IncrementalBuild              PENDING   0.31 seconds
ScanBuild                     PASS      907.79 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 0/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY
  2025-06-03  8:53 [PATCH BlueZ 0/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY Magdalena Kasenberg
  2025-06-03  8:53 ` [PATCH BlueZ 1/1] " Magdalena Kasenberg
@ 2025-06-03 17:30 ` patchwork-bot+bluetooth
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+bluetooth @ 2025-06-03 17:30 UTC (permalink / raw)
  To: Magdalena Kasenberg; +Cc: linux-bluetooth

Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Tue,  3 Jun 2025 10:53:51 +0200 you wrote:
> Hello,
> 
> This patch fixes the bit ID assigned to the HCI_LE_Read_ISO_Link_QUALITY command to match the value defined in Supported_Commands table in the Bluetooth Core Specification.
> 
> Best regards,
> Magda
> 
> [...]

Here is the summary with links:
  - [BlueZ,1/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=8ad12fe7b4b9

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

end of thread, other threads:[~2025-06-03 17:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-03  8:53 [PATCH BlueZ 0/1] monitor: Fix bit for HCI_LE_Read_ISO_Link_QUALITY Magdalena Kasenberg
2025-06-03  8:53 ` [PATCH BlueZ 1/1] " Magdalena Kasenberg
2025-06-03 10:33   ` bluez.test.bot
2025-06-03 17:30 ` [PATCH BlueZ 0/1] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox