From ffd716b4a21451e5989c2a10c1f2ade0b43e1c09 Mon Sep 17 00:00:00 2001 From: Lingao Meng Date: Wed, 6 Dec 2023 20:04:09 +0800 Subject: [PATCH] Bluetooth: Host: iso_data extend bt_buf_data Explicitly declare that iso_data extends bt_buf_data. Signed-off-by: Lingao Meng --- subsys/bluetooth/host/iso_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subsys/bluetooth/host/iso_internal.h b/subsys/bluetooth/host/iso_internal.h index 10fc9409643..a48607c61c3 100644 --- a/subsys/bluetooth/host/iso_internal.h +++ b/subsys/bluetooth/host/iso_internal.h @@ -12,8 +12,8 @@ #include struct iso_data { - /** BT_BUF_ISO_IN */ - uint8_t type; + /* Extend the bt_buf user data */ + struct bt_buf_data buf_data; /* Index into the bt_conn storage array */ uint8_t index;