projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83083fe
)
mx7dsabresd: Fix the pmic_get() parameter in the DM case
author
Fabio Estevam
<festevam@gmail.com>
Fri, 20 Dec 2019 17:59:26 +0000
(14:59 -0300)
committer
Stefano 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/mx7dsabresd/mx7dsabresd.c
patch
|
blob
|
history
diff --git
a/board/freescale/mx7dsabresd/mx7dsabresd.c
b/board/freescale/mx7dsabresd/mx7dsabresd.c
index
70490ba
..
835eed3
100644
(file)
--- a/
board/freescale/mx7dsabresd/mx7dsabresd.c
+++ b/
board/freescale/mx7dsabresd/mx7dsabresd.c
@@
-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)