On Fri, Nov 25, 2011 at 5:37 AM, Christian Riesch <[email protected]> wrote: > This patch avoids build breakage for SPLs that do not support printf. > > Signed-off-by: Christian Riesch <[email protected]> > Cc: Wolfgang Denk <[email protected]> > Cc: Tom Rini <[email protected]> > Cc: Andreas Bießmann <[email protected]> > Cc: Scott Wood <[email protected]>
Acked-by: Tom Rini <[email protected]> > --- > arch/arm/lib/eabi_compat.c | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c > index eb3e26d..e1b87be 100644 > --- a/arch/arm/lib/eabi_compat.c > +++ b/arch/arm/lib/eabi_compat.c > @@ -13,7 +13,9 @@ > > int raise (int signum) > { > +#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) > printf("raise: Signal # %d caught\n", signum); > +#endif > return 0; > } > > -- > 1.7.0.4 > > -- Tom _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

