summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorPeng Fan <[email protected]>2025-12-11 18:01:19 +0800
committerPeng Fan <[email protected]>2025-12-24 12:06:46 +0800
commit3f495781dd06007eeaba61fec9f71908fa491ec9 (patch)
treeb2a2575bf764663625300fb096c475ba59ecc5cc /drivers
parent8d3e8af93649f4b2d8e00475695bdf59545fd589 (diff)
power: regulator: Fix dependency of SPL_DM_REGULATOR_GPIO
gpio-regulator uses dm gpio API, so it depends on SPL_DM_GPIO, not SPL_GPIO. Reported-by: Tom Rini <[email protected]> Reviewed-by: Tom Rini <[email protected]> Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/power/regulator/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/regulator/Kconfig b/drivers/power/regulator/Kconfig
index 124b0b34c41..c6da459a212 100644
--- a/drivers/power/regulator/Kconfig
+++ b/drivers/power/regulator/Kconfig
@@ -242,7 +242,7 @@ config DM_REGULATOR_QCOM_USB_VBUS
config SPL_DM_REGULATOR_GPIO
bool "Enable Driver Model for GPIO REGULATOR in SPL"
- depends on DM_REGULATOR_GPIO && SPL_GPIO
+ depends on DM_REGULATOR_GPIO && SPL_DM_GPIO
select SPL_DM_REGULATOR_COMMON
---help---
This config enables implementation of driver-model regulator uclass