summaryrefslogtreecommitdiff
path: root/board/phytec
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2021-03-19 10:57:06 +0300
committerStefano Babic <sbabic@denx.de>2021-04-08 10:18:29 +0300
commit4eeb9fe84742af67c775afd5055b672b0639a244 (patch)
treed6db85e7b7d2e33a574d197de0f06edd5b243cdd /board/phytec
parentfd60fe7e61ba33f5101034f7183551708b1fecee (diff)
downloadu-boot-4eeb9fe84742af67c775afd5055b672b0639a244.tar.xz
power: pca9450: add a new parameter for power_pca9450_init
Currently PCA9450 might have address 0x25 or 0x35, so let user choose the address. Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'board/phytec')
-rw-r--r--board/phytec/phycore_imx8mp/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/phytec/phycore_imx8mp/spl.c b/board/phytec/phycore_imx8mp/spl.c
index eefdd7fdda..f9fa8d1e12 100644
--- a/board/phytec/phycore_imx8mp/spl.c
+++ b/board/phytec/phycore_imx8mp/spl.c
@@ -53,7 +53,7 @@ int power_init_board(void)
struct pmic *p;
int ret;
- ret = power_pca9450_init(0);
+ ret = power_pca9450_init(0, 0x25);
if (ret)
printf("power init failed");
p = pmic_get("PCA9450");