Bluetooth: Controller: Fix handling of CTEInfo in le_ext_adv_report()

Handling of CTEInfo being present was missing; Fixes test failure of
LL/DDI/SCN/BV-89-C

Signed-off-by: Troels Nilsson <trnn@demant.com>
This commit is contained in:
Troels Nilsson 2024-01-31 11:07:30 +01:00 committed by Maureen Helm
commit 89ce3566c0

View file

@ -7002,6 +7002,11 @@ static void le_ext_adv_report(struct pdu_data *pdu_data,
ptr += BDADDR_SIZE;
}
if (h->cte_info) {
/* CTEInfo is RFU */
ptr += 1;
}
if (h->adi) {
adi_curr = (void *)ptr;