diff options
author | Tom Rini <trini@konsulko.com> | 2022-02-16 18:21:21 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-02-16 18:21:21 -0500 |
commit | 6bb2557da29300bef341d8c56091724f71c1d70e (patch) | |
tree | 765642dc153ec807e77c10eb7a070999c6460cb5 /drivers | |
parent | ab8903a24db11571d634ef255976bb364c3ba64d (diff) | |
parent | bc2972bd9a03ebe267072864b44ff046cafbf747 (diff) |
Merge branch '2022-02-16-add-TI-J721E-SK'
- Add TI J721E SK support
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/power/pmic/tps65941.c | 1 | ||||
-rw-r--r-- | drivers/power/regulator/tps65941_regulator.c | 2 |
2 files changed, 3 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 }, { } diff --git a/drivers/power/regulator/tps65941_regulator.c b/drivers/power/regulator/tps65941_regulator.c index d73f832483..89918c38fa 100644 --- a/drivers/power/regulator/tps65941_regulator.c +++ b/drivers/power/regulator/tps65941_regulator.c @@ -299,6 +299,8 @@ static int tps65941_buck_probe(struct udevice *dev) idx = 1; } else if (idx == 34) { idx = 3; + } else if (idx == 123) { + idx = 1; } else if (idx == 1234) { idx = 1; } else { |