From: Fabio Estevam Date: Fri, 20 Dec 2019 17:59:28 +0000 (-0300) Subject: mx6slevk: Fix the pmic_get() parameter in the DM case X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=08b72863d7908703206773fe9338c9e2f493acdf;p=u-boot.git mx6slevk: Fix the pmic_get() parameter in the DM case 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 Signed-off-by: Fabio Estevam Reviewed-by: Peng Fan --- diff --git a/board/freescale/mx6slevk/mx6slevk.c b/board/freescale/mx6slevk/mx6slevk.c index 33ae91c307..453f281418 100644 --- a/board/freescale/mx6slevk/mx6slevk.c +++ b/board/freescale/mx6slevk/mx6slevk.c @@ -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;