mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
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: Igor Opaniuk <igor.opaniuk@toradex.com> Signed-off-by: Fabio Estevam <festevam@gmail.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
committed by
Stefano Babic
parent
cb14a5bf66
commit
94b293636f
@@ -57,7 +57,7 @@ int power_init_board(void)
|
|||||||
u32 switch_num = 6;
|
u32 switch_num = 6;
|
||||||
u32 offset = PFUZE100_SW1CMODE;
|
u32 offset = PFUZE100_SW1CMODE;
|
||||||
|
|
||||||
ret = pmic_get("pfuze100", &dev);
|
ret = pmic_get("pfuze100@08", &dev);
|
||||||
if (ret == -ENODEV)
|
if (ret == -ENODEV)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user