From: Tom Rini Date: Fri, 4 Jul 2025 21:50:20 +0000 (-0600) Subject: power: Correct dependencies on POWER_LEGACY X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31a309ff3eca5a9bb4fa8228d5270d792e7e0522;p=thirdparty%2Fu-boot.git power: Correct dependencies on POWER_LEGACY The POWER_LEGACY option functionally depends on not having DM_PMIC enabled, so add that here. Signed-off-by: Tom Rini --- diff --git a/drivers/power/Kconfig b/drivers/power/Kconfig index eed65058e66..fd1c871f0db 100644 --- a/drivers/power/Kconfig +++ b/drivers/power/Kconfig @@ -15,6 +15,7 @@ if POWER config POWER_LEGACY bool "Legacy power support" + depends on !DM_PMIC help Note: This is a legacy option. Use DM_PMIC instead.