diff --git a/components/esp_hw_support/port/esp32c5/pmu_param.c b/components/esp_hw_support/port/esp32c5/pmu_param.c index b6d8253e78..f9bfae07e8 100644 --- a/components/esp_hw_support/port/esp32c5/pmu_param.c +++ b/components/esp_hw_support/port/esp32c5/pmu_param.c @@ -439,7 +439,7 @@ uint32_t get_act_hp_dbias(void) hp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default."); } return hp_cali_dbias; } @@ -463,7 +463,7 @@ uint32_t get_act_lp_dbias(void) lp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "lp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default."); } return lp_cali_dbias; diff --git a/components/esp_hw_support/port/esp32c61/pmu_param.c b/components/esp_hw_support/port/esp32c61/pmu_param.c index d146f106aa..0a150e9cff 100644 --- a/components/esp_hw_support/port/esp32c61/pmu_param.c +++ b/components/esp_hw_support/port/esp32c61/pmu_param.c @@ -434,7 +434,7 @@ uint32_t get_act_hp_dbias(void) hp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default."); } return hp_cali_dbias; } @@ -457,7 +457,7 @@ uint32_t get_act_lp_dbias(void) lp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "lp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default."); } return lp_cali_dbias; } diff --git a/components/esp_hw_support/port/esp32p4/pmu_param.c b/components/esp_hw_support/port/esp32p4/pmu_param.c index c951454811..d49ed3a67b 100644 --- a/components/esp_hw_support/port/esp32p4/pmu_param.c +++ b/components/esp_hw_support/port/esp32p4/pmu_param.c @@ -345,7 +345,7 @@ uint32_t get_act_hp_dbias(void) hp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "hp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "hp_cali_dbias not burnt in efuse, use default."); } return hp_cali_dbias; } @@ -367,7 +367,7 @@ uint32_t get_act_lp_dbias(void) lp_cali_dbias = 31; } } else { - ESP_HW_LOGW(TAG, "lp_cali_dbias not burnt in efuse, use default."); + ESP_HW_LOGD(TAG, "lp_cali_dbias not burnt in efuse, use default."); } return lp_cali_dbias; }