On 15/08/2012 23:30, Tom Rini wrote:
> Signed-off-by: Tom Rini <tr...@ti.com>
> ---
>  arch/arm/cpu/armv7/omap-common/spl_mmc.c |    4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/arch/arm/cpu/armv7/omap-common/spl_mmc.c 
> b/arch/arm/cpu/armv7/omap-common/spl_mmc.c
> index 2f921bb..7552f6c 100644
> --- a/arch/arm/cpu/armv7/omap-common/spl_mmc.c
> +++ b/arch/arm/cpu/armv7/omap-common/spl_mmc.c
> @@ -84,6 +84,7 @@ end:
>       }
>  }
>  
> +#ifdef CONFIG_SPL_FAT_SUPPORT
>  static void mmc_load_image_fat(struct mmc *mmc)
>  {
>       s32 err;
> @@ -116,6 +117,7 @@ end:
>               hang();
>       }
>  }
> +#endif
>  
>  void spl_mmc_load_image(void)
>  {
> @@ -140,9 +142,11 @@ void spl_mmc_load_image(void)
>       if (boot_mode == MMCSD_MODE_RAW) {
>               debug("boot mode - RAW\n");
>               mmc_load_image_raw(mmc);
> +#ifdef CONFIG_SPL_FAT_SUPPORT
>       } else if (boot_mode == MMCSD_MODE_FAT) {
>               debug("boot mode - FAT\n");
>               mmc_load_image_fat(mmc);
> +#endif
>       } else {
>               puts("spl: wrong MMC boot mode\n");
>               hang();
> 

Right, this should be done !

Acked-by: Stefano Babic <sba...@denx.de>

Regards,
Stefano

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
=====================================================================
_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to