From 688bcdb4274d27815c913d3f5f88d5d1c9aadab0 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 11 Jan 2024 16:32:52 +0100 Subject: [PATCH] hci: rename event_handle_le_connection_complete --- src/hci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hci.c b/src/hci.c index 562d00de6..58e0744fb 100644 --- a/src/hci.c +++ b/src/hci.c @@ -3285,7 +3285,7 @@ static void hci_create_gap_connection_complete_event(const uint8_t * hci_event, } } -static void event_handle_le_connection_complete(const uint8_t * hci_event){ +static void hci_handle_le_connection_complete_event(const uint8_t * hci_event){ bd_addr_t addr; bd_addr_type_t addr_type; hci_connection_t * conn; @@ -4299,7 +4299,7 @@ static void event_handler(uint8_t *packet, uint16_t size){ case HCI_SUBEVENT_LE_CONNECTION_COMPLETE: case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V1: case HCI_SUBEVENT_LE_ENHANCED_CONNECTION_COMPLETE_V2: - event_handle_le_connection_complete(packet); + hci_handle_le_connection_complete_event(packet); break; // log_info("LE buffer size: %u, count %u", little_endian_read_16(packet,6), packet[8]);