You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2019/10/15 12:33:27 UTC

[mynewt-nimble] 01/04: nimble/ll: Minor function name cleanup

This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 5639168d95c828cfab8475decd87d92b578664de
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Tue Oct 8 11:26:49 2019 +0200

    nimble/ll: Minor function name cleanup
---
 nimble/controller/src/ble_ll_scan.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nimble/controller/src/ble_ll_scan.c b/nimble/controller/src/ble_ll_scan.c
index 794f684..c417a92 100644
--- a/nimble/controller/src/ble_ll_scan.c
+++ b/nimble/controller/src/ble_ll_scan.c
@@ -389,7 +389,7 @@ ble_ll_scan_req_pdu_prepare(struct ble_ll_scan_sm *scansm, uint8_t *adv_addr,
 }
 
 static uint8_t
-ble_ll_scan_req_tx_pducb(uint8_t *dptr, void *pducb_arg, uint8_t *hdr_byte)
+ble_ll_scan_req_tx_pdu_cb(uint8_t *dptr, void *pducb_arg, uint8_t *hdr_byte)
 {
     struct ble_ll_scan_sm *scansm = pducb_arg;
     struct ble_ll_scan_pdu_data *pdu_data = &scansm->pdu_data;
@@ -2479,7 +2479,7 @@ ble_ll_scan_rx_isr_end(struct os_mbuf *rxpdu, uint8_t crcok)
 #endif
             /* XXX: TODO assume we are on correct phy */
             ble_ll_scan_req_pdu_prepare(scansm, adv_addr, addr_type);
-            rc = ble_phy_tx(ble_ll_scan_req_tx_pducb, scansm,
+            rc = ble_phy_tx(ble_ll_scan_req_tx_pdu_cb, scansm,
                             BLE_PHY_TRANSITION_TX_RX);
 
             if (rc == 0) {