[PATCH] mx7dsabre: Fix dm probe pmic

With commit mx7dsabre: Enable DM_ETH 0d52bab4
Device Tree has been update and change pfuze3000 node
Signed-off-by: Joris Offouga offougajoris@gmail.com --- board/freescale/mx7dsabresd/mx7dsabresd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 835eed3316..41c620795c 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -264,7 +264,7 @@ int power_init_board(void) struct udevice *dev; int ret, dev_id, rev_id;
- ret = pmic_get("pfuze3000@08", &dev); + ret = pmic_get("pfuze3000@8", &dev); if (ret == -ENODEV) return 0; if (ret != 0)

Hi Joris,
On Thu, Jan 16, 2020 at 1:41 PM Joris Offouga offougajoris@gmail.com wrote:
With commit mx7dsabre: Enable DM_ETH 0d52bab4
Please reference commit like this:
With commit 0d52bab4621 ("mx7dsabre: Enable DM_ETH")
BTW, it would be better if this commit were split in two:
- One for syncing the dts - Other one for converting to DM_ETH
Device Tree has been update and change pfuze3000 node
Signed-off-by: Joris Offouga offougajoris@gmail.com
board/freescale/mx7dsabresd/mx7dsabresd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 835eed3316..41c620795c 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -264,7 +264,7 @@ int power_init_board(void) struct udevice *dev; int ret, dev_id, rev_id;
ret = pmic_get("pfuze3000@08", &dev);
ret = pmic_get("pfuze3000@8", &dev);
Thanks for the fix:
Reviewed-by: Fabio Estevam festevam@gmail.com

With commit mx7dsabre: Enable DM_ETH 0d52bab4 Device Tree has been update and change pfuze3000 node 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
participants (3)
-
Fabio Estevam
-
Joris Offouga
-
sbabic@denx.de