diff options
| author | Tom Rini <[email protected]> | 2026-03-23 13:53:02 -0600 |
|---|---|---|
| committer | Casey Connolly <[email protected]> | 2026-03-24 11:42:19 +0100 |
| commit | bb5012fb66cae854d05334c3f8787b093f0c7b92 (patch) | |
| tree | ff8ec20a6e97f0c75bd1aecbe515109d15531acb | |
| parent | 0f265c20a56f301dd44eb3e2067fe11fb9889030 (diff) | |
power: regulator: qcom: Correct dependenecies for DM_REGULATOR_QCOM_USB_VBUS
The DM_REGULATOR_QCOM_USB_VBUS functionality can only work with DM_PMIC
enabled as well, so express this dependency in Kconfig.
Signed-off-by: Tom Rini <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Casey Connolly <[email protected]>
| -rw-r--r-- | drivers/power/regulator/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/regulator/Kconfig b/drivers/power/regulator/Kconfig index bd9ccd26981..d8b3e0f62e6 100644 --- a/drivers/power/regulator/Kconfig +++ b/drivers/power/regulator/Kconfig @@ -236,7 +236,7 @@ config DM_REGULATOR_QCOM_RPMH config DM_REGULATOR_QCOM_USB_VBUS bool "Enable driver model for Qualcomm USB vbus regulator" - depends on DM_REGULATOR + depends on DM_REGULATOR && DM_PMIC ---help--- Enable support for the Qualcomm USB Vbus regulator. The driver implements get/set api for the regulator to be used by u-boot. |
