fix(esp_hw_support): rever the "fix RNG to LP Peri domain dependency on C5"

This reverts commit 5d5d15fbfc.
This commit is contained in:
wuzhenghui
2026-01-09 11:21:37 +08:00
parent 7c471e0401
commit b748afb8cc
-3
View File
@@ -2749,9 +2749,6 @@ static SLEEP_FN_ATTR uint32_t get_power_down_flags(void)
// TOP power domain depends on the RTC_PERIPH power domain on ESP32C6, RTC_PERIPH should only be disabled when the TOP domain is down.
pd_flags &= ~RTC_SLEEP_PD_RTC_PERIPH;
}
#elif CONFIG_IDF_TARGET_ESP32C5
// TODO: [ESP32C5] PM-642 RNG module depends on LP PERIPH domain, force it on temporary.
pd_flags &= ~RTC_SLEEP_PD_RTC_PERIPH;
#endif
return pd_flags;
}