]> granicus.if.org Git - esp-idf/commitdiff
ble_mesh: rename reset_link() to reset_adv_link()
authorlly <lly@espressif.com>
Mon, 2 Sep 2019 06:36:24 +0000 (14:36 +0800)
committerlly <lly@espressif.com>
Mon, 9 Sep 2019 09:15:16 +0000 (17:15 +0800)
components/bt/esp_ble_mesh/mesh_core/prov.c

index c10aaba8ea8f71d99be76bdc235f1cdc5f64f3eb..51555678a00581592a04c651b54df75e616caad7 100644 (file)
@@ -281,7 +281,7 @@ static void prov_clear_tx(void)
     free_segments();
 }
 
-static void reset_link(void)
+static void reset_adv_link(void)
 {
     prov_clear_tx();
 
@@ -1261,7 +1261,7 @@ static void prov_retransmit(struct k_work *work)
 #endif
     if (k_uptime_get() - link.tx.start > timeout) {
         BT_WARN("Node timeout, giving up transaction");
-        reset_link();
+        reset_adv_link();
         return;
     }
 
@@ -1341,7 +1341,7 @@ static void link_close(struct prov_rx *rx, struct net_buf_simple *buf)
 {
     BT_DBG("len %u", buf->len);
 
-    reset_link();
+    reset_adv_link();
 }
 
 static void gen_prov_ctl(struct prov_rx *rx, struct net_buf_simple *buf)