File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2198,7 +2198,7 @@ static const struct event_handler meta_events[] = {
2198
2198
#endif /* defined(CONFIG_BT_PER_ADV_SYNC) */
2199
2199
#endif /* defined(CONFIG_BT_EXT_ADV) */
2200
2200
#if defined(CONFIG_BT_ISO_UNICAST )
2201
- EVENT_HANDLER (BT_HCI_EVT_LE_CIS_ESTABLISHED , hci_le_cis_estabilished ,
2201
+ EVENT_HANDLER (BT_HCI_EVT_LE_CIS_ESTABLISHED , hci_le_cis_established ,
2202
2202
sizeof (struct bt_hci_evt_le_cis_established )),
2203
2203
EVENT_HANDLER (BT_HCI_EVT_LE_CIS_REQ , hci_le_cis_req ,
2204
2204
sizeof (struct bt_hci_evt_le_cis_req )),
Original file line number Diff line number Diff line change @@ -794,7 +794,7 @@ void bt_iso_cleanup_acl(struct bt_conn *iso)
794
794
}
795
795
}
796
796
797
- void hci_le_cis_estabilished (struct net_buf * buf )
797
+ void hci_le_cis_established (struct net_buf * buf )
798
798
{
799
799
struct bt_hci_evt_le_cis_established * evt = (void * )buf -> data ;
800
800
uint16_t handle = sys_le16_to_cpu (evt -> conn_handle );
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ void hci_iso(struct net_buf *buf);
73
73
/* Allocates RX buffer */
74
74
struct net_buf * bt_iso_get_rx (k_timeout_t timeout );
75
75
76
- /* Process CIS Estabilished event */
77
- void hci_le_cis_estabilished (struct net_buf * buf );
76
+ /* Process CIS Established event */
77
+ void hci_le_cis_established (struct net_buf * buf );
78
78
79
79
/* Process CIS Request event */
80
80
void hci_le_cis_req (struct net_buf * buf );
You can’t perform that action at this time.
0 commit comments