]> Git Repo - u-boot.git/commitdiff
mx7dsabresd: Fix the pmic_get() parameter in the DM case
authorFabio Estevam <[email protected]>
Fri, 20 Dec 2019 17:59:26 +0000 (14:59 -0300)
committerStefano Babic <[email protected]>
Tue, 7 Jan 2020 09:26:57 +0000 (10:26 +0100)
When pmic_get() is used with DM the first parameter must be
the complete node name plus the unit address, so fix it
accordingly.

Reported-by: Igor Opaniuk <[email protected]>
Signed-off-by: Fabio Estevam <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
board/freescale/mx7dsabresd/mx7dsabresd.c

index 70490ba68e3dfc5ad914974c392e415be447d36b..835eed3316405dae9140f43d81357ec3304e22ba 100644 (file)
@@ -264,7 +264,7 @@ int power_init_board(void)
        struct udevice *dev;
        int ret, dev_id, rev_id;
 
-       ret = pmic_get("pfuze3000", &dev);
+       ret = pmic_get("pfuze3000@08", &dev);
        if (ret == -ENODEV)
                return 0;
        if (ret != 0)
This page took 0.032996 seconds and 4 git commands to generate.