fix: modify some typos to ensure CI pipeline run pass

This commit is contained in:
Li Shuai
2024-03-28 21:14:07 +08:00
parent 4066844908
commit f20186fe02
4 changed files with 11 additions and 11 deletions

View File

@@ -314,7 +314,7 @@ void esp_phy_disable(esp_phy_modem_t modem)
#endif
}
#if CONFIG_IDF_TARGET_ESP32
// Update WiFi MAC time before disalbe WiFi/BT common peripheral clock
// Update WiFi MAC time before disable WiFi/BT common peripheral clock
phy_update_wifi_mac_time(true, esp_timer_get_time());
#endif
// Disable WiFi/BT common peripheral clock. Do not disable clock for hardware RNG
@@ -473,7 +473,7 @@ void esp_mac_bb_pd_mem_deinit(void)
}
err = sleep_retention_module_deinit(SLEEP_RETENTION_MODULE_WIFI_BB);
if (err != ESP_OK) {
ESP_LOGW(TAG, "WiFi BB sleep retention deinit defailed");
ESP_LOGW(TAG, "WiFi BB sleep retention deinit failed");
}
#endif
}
@@ -918,7 +918,7 @@ static uint8_t phy_find_bin_type_according_country(const char* country)
if (i == sizeof(s_country_code_map_type_table)/sizeof(phy_country_to_bin_type_t)) {
phy_init_data_type = ESP_PHY_INIT_DATA_TYPE_DEFAULT;
ESP_LOGW(TAG, "Use the default certification code beacuse %c%c doesn't have a certificate", country[0], country[1]);
ESP_LOGW(TAG, "Use the default certification code because %c%c doesn't have a certificate", country[0], country[1]);
}
return phy_init_data_type;