diff options
| author | Tom Rini <[email protected]> | 2026-03-16 19:24:24 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-30 15:02:27 -0600 |
| commit | 4f2875911f67dc318096f5e0bc85c3b82512a2a5 (patch) | |
| tree | 761473891a7477c5ee2ec80929311f8abf282d85 | |
| parent | aa8203f83ab500c1150188d9682e9fe6e29fd6ab (diff) | |
sysreset: Rework tests around SYSRESET_CMD_POWEROFF
As exposed by "make randconfig", we have an issue around how
SYSRESET_CMD_POWEROFF is typically selected. We cannot rely only on
CMD_POWEROFF as SYSRESET_CMD_POWEROFF must also be tested for its own
dependency of SYSRESET.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | arch/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/power/pmic/Kconfig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index fb3e8d598e7..b6e52654743 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -212,7 +212,7 @@ config SANDBOX select SUPPORT_OF_CONTROL select SUPPORT_BIG_ENDIAN select SUPPORT_LITTLE_ENDIAN - select SYSRESET_CMD_POWEROFF if CMD_POWEROFF + select SYSRESET_CMD_POWEROFF if SYSRESET && CMD_POWEROFF select SYS_CACHE_SHIFT_4 select IRQ select SUPPORT_EXTENSION_SCAN if CMDLINE diff --git a/drivers/power/pmic/Kconfig b/drivers/power/pmic/Kconfig index 345b7c92263..5bc14842e66 100644 --- a/drivers/power/pmic/Kconfig +++ b/drivers/power/pmic/Kconfig @@ -384,7 +384,7 @@ config DM_PMIC_TPS80031 config PMIC_STPMIC1 bool "Enable support for STMicroelectronics STPMIC1 PMIC" depends on DM_I2C - select SYSRESET_CMD_POWEROFF if CMD_POWEROFF && !ARM_PSCI_FW + select SYSRESET_CMD_POWEROFF if SYSRESET && CMD_POWEROFF && !ARM_PSCI_FW ---help--- The STPMIC1 PMIC provides 4 BUCKs, 6 LDOs, 1 VREF and 2 power switches. It is accessed via an I2C interface. The device is used with STM32MP1 |
