[U-Boot] [PATCH v3 14/17] dm: board:samsung: power_init_board: add requirement of CONFIG_DM_PMIC
Simon Glass
sjg at chromium.org
Sun Mar 29 15:09:42 CEST 2015
On 24 March 2015 at 14:30, Przemyslaw Marczak <p.marczak at samsung.com> wrote:
> 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 <p.marczak at samsung.com>
> ---
> board/samsung/common/board.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Acked-by: Simon Glass <sjg at chromium.org>
>
> diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c
> index 2e17da8..c4cbb63 100644
> --- a/board/samsung/common/board.c
> +++ b/board/samsung/common/board.c
> @@ -21,9 +21,9 @@
> #include <asm/arch/pinmux.h>
> #include <asm/arch/power.h>
> #include <asm/arch/system.h>
> -#include <power/pmic.h>
> #include <asm/arch/sromc.h>
> #include <lcd.h>
> +#include <i2c.h>
> #include <samsung/misc.h>
>
> DECLARE_GLOBAL_DATA_PTR;
> @@ -168,7 +168,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();
> --
> 1.9.1
>
More information about the U-Boot
mailing list