diff options
author | Fabio Estevam <festevam@gmail.com> | 2021-03-05 19:11:49 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2021-04-08 23:59:50 +0200 |
commit | c174c0623b02d7ae0965fd089934a490a95294c3 (patch) | |
tree | 19a005f3a3545114b8b9293636cb6fd333eaa262 /board | |
parent | 8974ff1a60365dedf1192632f5e0c21680d49dbc (diff) | |
download | u-boot-c174c0623b02d7ae0965fd089934a490a95294c3.tar.gz u-boot-c174c0623b02d7ae0965fd089934a490a95294c3.tar.bz2 u-boot-c174c0623b02d7ae0965fd089934a490a95294c3.zip |
pico-imx6ul: Pass the PMIC I2C address in pmic_get()
Pass "pfuze3000@8" in pmic_get() so that the PMIC node can
be found in the devicetree.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/technexion/pico-imx6ul/pico-imx6ul.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/technexion/pico-imx6ul/pico-imx6ul.c b/board/technexion/pico-imx6ul/pico-imx6ul.c index 62a54d0c8e..682c88dee7 100644 --- a/board/technexion/pico-imx6ul/pico-imx6ul.c +++ b/board/technexion/pico-imx6ul/pico-imx6ul.c @@ -159,7 +159,7 @@ int power_init_board(void) struct udevice *dev; int ret, dev_id, rev_id; - ret = pmic_get("pfuze3000", &dev); + ret = pmic_get("pfuze3000@8", &dev); if (ret == -ENODEV) return 0; if (ret != 0) |