From c174c0623b02d7ae0965fd089934a490a95294c3 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Fri, 5 Mar 2021 19:11:49 -0300 Subject: 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 Reviewed-by: Jaehoon Chung --- board/technexion/pico-imx6ul/pico-imx6ul.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/technexion') diff --git a/board/technexion/pico-imx6ul/pico-imx6ul.c b/board/technexion/pico-imx6ul/pico-imx6ul.c index 62a54d0c..682c88d 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) -- cgit v1.1