diff options
author | Manorit Chawdhry <m-chawdhry@ti.com> | 2024-10-15 16:22:17 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-21 17:52:31 -0600 |
commit | 48b45f131fd68bb9d0f9ad8a6fa649b0afacc627 (patch) | |
tree | 113d9e9eb32083037dd133207dc627a80b1982b7 | |
parent | 28dc47038edc4e93f32d75a357131bcf01a18d85 (diff) |
power: pmic: tps65941: Add DM_PMIC dependency
This Kconfig depends on DM_PMIC but hadn't be explicitly stated which
could cause config related issues.
Adds the dependency in Kconfig for tps65941.
Fixes: 6b86dd0c1ead ("power: pmic: tps65941: Add support for tps65941 family of PMICs")
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
Reviewed-by: Aniket Limaye <a-limaye@ti.com>
-rw-r--r-- | drivers/power/pmic/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/pmic/Kconfig b/drivers/power/pmic/Kconfig index 562c1a3b122..bbcbcee4c35 100644 --- a/drivers/power/pmic/Kconfig +++ b/drivers/power/pmic/Kconfig @@ -394,6 +394,7 @@ config SPL_PMIC_LP87565 config PMIC_TPS65941 bool "Enable driver for Texas Instruments TPS65941 PMIC" + depends on DM_PMIC help The TPS65941 is a PMIC containing a bunch of SMPS & LDOs. This driver binds the pmic children. |