mx6slevk: Fix the pmic_get() parameter in the DM case
authorFabio Estevam <festevam@gmail.com>
Fri, 20 Dec 2019 17:59:28 +0000 (14:59 -0300)
committerStefano Babic <sbabic@denx.de>
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 <igor.opaniuk@toradex.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
board/freescale/mx6slevk/mx6slevk.c

index 33ae91c307456206d8fff1ac60956eeacbdf1996..453f281418d08040f7782d76396c6ee11afa264d 100644 (file)
@@ -145,7 +145,7 @@ int power_init_board(void)
        u32 switch_num = 6;
        u32 offset = PFUZE100_SW1CMODE;
 
-       ret = pmic_get("pfuze100", &dev);
+       ret = pmic_get("pfuze100@08", &dev);
        if (ret == -ENODEV)
                return 0;