From: Przemyslaw Marczak
Date: Mon, 20 Apr 2015 18:07:50 +0000 (+0200)
Subject: dm: board:samsung: power_init_board: add requirement of CONFIG_DM_PMIC
X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=622e5fee3d14c06c4c68f3c89612a9e58926c900;p=project%2Fbcm63xx%2Fu-boot.git
dm: board:samsung: power_init_board: add requirement of CONFIG_DM_PMIC
In the power_init_board function call, regulator driver init is called,
so before compile, make sure that any power framework is defined.
Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
---
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c
index 9be295038b..20dd75c22e 100644
--- a/board/samsung/common/board.c
+++ b/board/samsung/common/board.c
@@ -21,9 +21,9 @@
#include
#include
#include
-#include
#include
#include
+#include
#include
#include
@@ -169,7 +169,7 @@ int board_early_init_f(void)
}
#endif
-#if defined(CONFIG_POWER)
+#if defined(CONFIG_POWER) || defined(CONFIG_DM_PMIC)
int power_init_board(void)
{
set_ps_hold_ctrl();