All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ 1/6] monitor/msft: Fix uuid.u128 format
@ 2021-10-20 21:48 Luiz Augusto von Dentz
  2021-10-20 21:48 ` [PATCH BlueZ 2/6] monitor/msft: Add feature bits definition Luiz Augusto von Dentz
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Luiz Augusto von Dentz @ 2021-10-20 21:48 UTC (permalink / raw)
  To: linux-bluetooth

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

128 bits are actually 16 octecs not 8.
---
 monitor/msft.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/monitor/msft.h b/monitor/msft.h
index 79692537f..d2921f4c8 100644
--- a/monitor/msft.h
+++ b/monitor/msft.h
@@ -87,7 +87,7 @@ struct msft_le_monitor_adv_uuid {
 	union {
 		uint16_t u16;
 		uint32_t u32;
-		uint8_t  u128[8];
+		uint8_t  u128[16];
 	} value;
 } __attribute__((packed));
 
-- 
2.31.1


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

end of thread, other threads:[~2021-10-20 22:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-20 21:48 [PATCH BlueZ 1/6] monitor/msft: Fix uuid.u128 format Luiz Augusto von Dentz
2021-10-20 21:48 ` [PATCH BlueZ 2/6] monitor/msft: Add feature bits definition Luiz Augusto von Dentz
2021-10-20 21:48 ` [PATCH BlueZ 3/6] emulator/vhci: Fix writing msft_opcode using binary format Luiz Augusto von Dentz
2021-10-20 21:48 ` [PATCH BlueZ 4/6] btdev: Use Linux Foundation as manufacturer Luiz Augusto von Dentz
2021-10-20 21:48 ` [PATCH BlueZ 5/6] monitor: Enable decoding of MSFT extension with emulator Luiz Augusto von Dentz
2021-10-20 21:48 ` [PATCH BlueZ 6/6] emulator: Add initial support for MSFT vendor commands Luiz Augusto von Dentz
2021-10-20 22:34 ` [BlueZ,1/6] monitor/msft: Fix uuid.u128 format 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.