summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSinthu Raja <sinthu.raja@ti.com>2022-02-09 12:36:46 +0300
committerTom Rini <trini@konsulko.com>2022-02-16 22:19:29 +0300
commit3d32ad4d2436b0804176c328dc7c570b38df6949 (patch)
tree3dabe7e8bcd5643033f4768057c1948b597d09cb /drivers
parent545026a5549cf3c17a082605bbde175824fd3cb5 (diff)
downloadu-boot-3d32ad4d2436b0804176c328dc7c570b38df6949.tar.xz
drivers: power: pmic: Add support for tps659412 PMIC
Since TPS659412 and TPS659413 are both software compatible, add a compatible string for the same inside tps65941.c. Signed-off-by: Sinthu Raja <sinthu.raja@ti.com> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/power/pmic/tps65941.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/pmic/tps65941.c b/drivers/power/pmic/tps65941.c
index 114ef4d238..83d0f83c64 100644
--- a/drivers/power/pmic/tps65941.c
+++ b/drivers/power/pmic/tps65941.c
@@ -71,6 +71,7 @@ static struct dm_pmic_ops tps65941_ops = {
static const struct udevice_id tps65941_ids[] = {
{ .compatible = "ti,tps659411", .data = TPS659411 },
+ { .compatible = "ti,tps659412", .data = TPS659411 },
{ .compatible = "ti,tps659413", .data = TPS659413 },
{ .compatible = "ti,lp876441", .data = LP876441 },
{ }