From a2d9f6fcbea55f9866b5a7687c2cf39d15c38598 Mon Sep 17 00:00:00 2001 From: Roman Dobrodii Date: Thu, 25 May 2023 12:37:34 +0200 Subject: [PATCH] soc/arm/silabs: bugfix - disable PMGR if no DEV_INIT sl_power_manager can only be used if HAL services infrastructure is enabled, and that is controlled by SOC_GECKO_DEV_INIT kconfig option. Therefore, SOC_GECKO_PM_BACKEND_PMGR may not be enabled without SOC_GECKO_DEV_INIT. Signed-off-by: Roman Dobrodii --- soc/arm/silabs_exx32/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/soc/arm/silabs_exx32/Kconfig b/soc/arm/silabs_exx32/Kconfig index e7759151981..95b2be39f1b 100644 --- a/soc/arm/silabs_exx32/Kconfig +++ b/soc/arm/silabs_exx32/Kconfig @@ -130,6 +130,7 @@ if PM config SOC_GECKO_PM_BACKEND_PMGR bool + depends on SOC_GECKO_DEV_INIT default y if SOC_GECKO_SERIES2 help Implement PM using sl_power_manager service from Gecko SDK