Skip to content
Snippets Groups Projects
Commit 94b29363 authored by Fabio Estevam's avatar Fabio Estevam Committed by Stefano Babic
Browse files

mx6sllevk: 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: default avatarIgor Opaniuk <igor.opaniuk@toradex.com>
Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Reviewed-by: default avatarPeng Fan <peng.fan@nxp.com>
parent cb14a5bf
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment