diff mbox series

[V2,1/4] warp7: Fix the pmic_get() parameter in the DM case

Message ID 20200129210602.14521-1-offougajoris@gmail.com
State Accepted
Commit 80dae36b34758bbfbaf43ceafca2aeadd5afaba4
Delegated to: Stefano Babic
Headers show
Series [V2,1/4] warp7: Fix the pmic_get() parameter in the DM case | expand

Commit Message

Joris OFFOUGA Jan. 29, 2020, 9:05 p.m. UTC
When pmic_get() is used with DM the first parameter must be
the complete node name plus the unit address, so fix it
accordingly

Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
---
 changes v1->v2:
 add commit log
 change commit message
 add reviewed

 board/warp7/warp7.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stefano Babic Feb. 10, 2020, 9:08 a.m. UTC | #1
> When pmic_get() is used with DM the first parameter must be
> the complete node name plus the unit address, so fix it
> accordingly
> Signed-off-by: Joris Offouga <offougajoris@gmail.com>
> Reviewed-by: Fabio Estevam <festevam@gmail.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/board/warp7/warp7.c b/board/warp7/warp7.c
index 9efc62f2fb..1ebec93916 100644
--- a/board/warp7/warp7.c
+++ b/board/warp7/warp7.c
@@ -67,7 +67,7 @@  int power_init_board(void)
 	struct udevice *dev;
 	int ret, dev_id, rev_id;
 
-	ret = pmic_get("pfuze3000", &dev);
+	ret = pmic_get("pfuze3000@8", &dev);
 	if (ret == -ENODEV)
 		return 0;
 	if (ret != 0)