From de107cf4f2c2a00967e5c25afedd1ca3d1dd0f08 Mon Sep 17 00:00:00 2001 From: wuzhenghui Date: Wed, 13 Nov 2024 16:44:45 +0800 Subject: [PATCH] fix(esp_pm): move clock module out of TOP_DOMAIN_PERIPHERALS_BM --- .../esp_hw_support/include/esp_private/sleep_retention.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/esp_hw_support/include/esp_private/sleep_retention.h b/components/esp_hw_support/include/esp_private/sleep_retention.h index a55c301bdd..86c1d9d292 100644 --- a/components/esp_hw_support/include/esp_private/sleep_retention.h +++ b/components/esp_hw_support/include/esp_private/sleep_retention.h @@ -79,9 +79,7 @@ typedef enum sleep_retention_module_bitmap { SLEEP_RETENTION_MODULE_BM_ALL = (uint32_t)-1 } sleep_retention_module_bitmap_t; -#define TOP_DOMAIN_PERIPHERALS_BM (SLEEP_RETENTION_MODULE_BM_CLOCK_SYSTEM \ - | SLEEP_RETENTION_MODULE_BM_CLOCK_MODEM \ - | SLEEP_RETENTION_MODULE_BM_SYS_PERIPH \ +#define TOP_DOMAIN_PERIPHERALS_BM (SLEEP_RETENTION_MODULE_BM_SYS_PERIPH \ | SLEEP_RETENTION_MODULE_BM_GDMA_CH0 \ | SLEEP_RETENTION_MODULE_BM_GDMA_CH1 \ | SLEEP_RETENTION_MODULE_BM_GDMA_CH2 \