]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
power: pmic: tps65941: Update compatible to aling with kernel DT
authorUdit Kumar <u-kumar1@ti.com>
Fri, 19 Apr 2024 06:00:16 +0000 (11:30 +0530)
committerJaehoon Chung <jh80.chung@samsung.com>
Mon, 29 Apr 2024 00:20:51 +0000 (09:20 +0900)
Linux kernel driver drivers/mfd/tps6594-i2c.c is using different
name for compatible for tps6594 family PMIC.
After sync of Linux kernel DT to u-boot for TI platforms
J7200, J721S2 and J784S4 PMIC is no longer getting probed.

So updating compatible field to align with Linux driver and DT.

Signed-off-by: Udit Kumar <u-kumar1@ti.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
drivers/power/pmic/tps65941.c

index ef63eb733ae7f181578b2fbdde075696a9a4f994..943d845086c3b6101d6a7d48b76acf53e6e1b92e 100644 (file)
@@ -76,6 +76,9 @@ static const struct udevice_id tps65941_ids[] = {
        { .compatible = "ti,tps659413", .data = TPS659413 },
        { .compatible = "ti,lp876441",  .data =  LP876441 },
        { .compatible = "ti,tps65224",  .data =  TPS65224 },
+       { .compatible = "ti,tps6594-q1", .data =  TPS659411 },
+       { .compatible = "ti,tps6593-q1", .data =  TPS659413 },
+       { .compatible = "ti,lp8764-q1",  .data =  LP876441 },
        { }
 };