summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/gd/hci/hci_packets.pdl8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/gd/hci/hci_packets.pdl b/system/gd/hci/hci_packets.pdl
index a9e8b95d76..56d1f16a23 100644
--- a/system/gd/hci/hci_packets.pdl
+++ b/system/gd/hci/hci_packets.pdl
@@ -2746,9 +2746,9 @@ packet ReadLocalSupportedCodecsV1 : Command (op_code = READ_LOCAL_SUPPORTED_CODE
packet ReadLocalSupportedCodecsV1Complete : CommandComplete (command_op_code = READ_LOCAL_SUPPORTED_CODECS_V1) {
status : ErrorCode,
- _size_(supported_codecs) : 8,
+ _count_(supported_codecs) : 8,
supported_codecs : 8[],
- _size_(vendor_specific_codecs) : 8,
+ _count_(vendor_specific_codecs) : 8,
vendor_specific_codecs : 32[],
}
@@ -2776,9 +2776,9 @@ struct VendorCodecConfiguration {
packet ReadLocalSupportedCodecsV2Complete : CommandComplete (command_op_code = READ_LOCAL_SUPPORTED_CODECS_V2) {
status : ErrorCode,
- _size_(supported_codecs) : 8,
+ _count_(supported_codecs) : 8,
supported_codecs : CodecConfiguration[],
- _size_(vendor_specific_codecs) : 8,
+ _count_(vendor_specific_codecs) : 8,
vendor_specific_codecs : VendorCodecConfiguration[],
}