From d9ef6aed668afe7e59cc59e1fc8d0076d0ce5d03 Mon Sep 17 00:00:00 2001 From: liuning Date: Wed, 30 Nov 2022 16:39:40 +0800 Subject: [PATCH] ci: fix esp_phy_modem_deinit issue --- components/bt/controller/esp32c2/bt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bt/controller/esp32c2/bt.c b/components/bt/controller/esp32c2/bt.c index 9a7c90742e..185cd01270 100644 --- a/components/bt/controller/esp32c2/bt.c +++ b/components/bt/controller/esp32c2/bt.c @@ -737,7 +737,7 @@ esp_err_t esp_bt_controller_init(esp_bt_controller_config_t *cfg) return ESP_OK; free_phy: esp_phy_disable(); - esp_phy_pd_mem_deinit(); + esp_phy_modem_deinit(); #if CONFIG_BT_NIMBLE_ENABLED ble_npl_eventq_deinit(nimble_port_get_dflt_eventq()); #endif // CONFIG_BT_NIMBLE_ENABLED