[U-Boot] [PATCH V11 09/13] OMAP3: SPL: do not call I2C init if no I2C is set.

Tom Rini tom.rini at gmail.com
Fri Dec 16 16:53:33 CET 2011


On Fri, Dec 16, 2011 at 8:37 AM, Stefano Babic <sbabic at denx.de> wrote:
> Call i2c initialization in spl_board_init only if I2C
> is configured for the board.
>
> Signed-off-by: Stefano Babic <sbabic at denx.de>
> CC: Tom Rini <tom.rini at gmail.com>
> CC: Wolfgang Denk <wd at denx.de>
> CC: Simon Schwarz <simonschwarzcor at gmail.com>
> ---
>  arch/arm/cpu/armv7/omap3/board.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/cpu/armv7/omap3/board.c b/arch/arm/cpu/armv7/omap3/board.c
> index 1f33c63..889d650 100644
> --- a/arch/arm/cpu/armv7/omap3/board.c
> +++ b/arch/arm/cpu/armv7/omap3/board.c
> @@ -92,7 +92,9 @@ u32 omap_boot_device(void)
>
>  void spl_board_init(void)
>  {
> +#ifdef CONFIG_HARD_I2C

This should be CONFIG_HARD_I2C || CONFIG_SOFT_I2C.  Or perhaps since
we're in SPL, CONFIG_SPL_I2C_SUPPORT ?

-- 
Tom


More information about the U-Boot mailing list