diff options
| author | Fabio Estevam <[email protected]> | 2021-03-05 19:11:49 -0300 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2021-04-08 23:59:50 +0200 |
| commit | c174c0623b02d7ae0965fd089934a490a95294c3 (patch) | |
| tree | 19a005f3a3545114b8b9293636cb6fd333eaa262 | |
| parent | 8974ff1a60365dedf1192632f5e0c21680d49dbc (diff) | |
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 <[email protected]>
Reviewed-by: Jaehoon Chung <[email protected]>
| -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 62a54d0c8eb..682c88dee78 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) |
