From fd3b710ae8d37c3909aee47352c6f7f79b8d9b3f Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Thu, 5 Jan 2017 16:55:14 +0900 Subject: board: samsung: goni: fix the pmic's name for getting For Getting from uclass, use the "max8998-pmic" as name. It also needs to change the dt-node's name as "max8998-pmic". Otherwise, it doesn't find the pmic device. Because it's only searching for 'max8998_pmic'. Signed-off-by: Jaehoon Chung Signed-off-by: Minkyu Kang --- board/samsung/goni/goni.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board') diff --git a/board/samsung/goni/goni.c b/board/samsung/goni/goni.c index 80fd0d4..9c48d71 100644 --- a/board/samsung/goni/goni.c +++ b/board/samsung/goni/goni.c @@ -138,7 +138,7 @@ static int s5pc1xx_phy_control(int on) static int status; int reg, ret; - ret = pmic_get("max8998_pmic", &dev); + ret = pmic_get("max8998-pmic", &dev); if (ret) return ret; -- cgit v1.1