Skip to content

Commit ed94d2a

Browse files
cvinayakAnas Nashif
authored andcommitted
Bluetooth: controller: Remove assert on invalid LL id
Remove an assert on receiving invalid LL id, drop these invalid PDUs. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 4b98d72 commit ed94d2a

File tree

1 file changed

+1
-1
lines changed
  • subsys/bluetooth/controller/ll_sw

1 file changed

+1
-1
lines changed

subsys/bluetooth/controller/ll_sw/ctrl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3278,7 +3278,7 @@ isr_rx_conn_pkt(struct radio_pdu_node_rx *radio_pdu_node_rx,
32783278
break;
32793279
case PDU_DATA_LLID_RESV:
32803280
default:
3281-
LL_ASSERT(0);
3281+
/* Invalid LL id, drop it. */
32823282
break;
32833283
}
32843284

0 commit comments

Comments
 (0)