[U-Boot-Users] mpc83xx_spi.c breaks non-ppc ports

Kim Phillips kim.phillips at freescale.com
Tue Feb 5 02:11:48 CET 2008


On Mon, 4 Feb 2008 17:57:23 -0500
Mike Frysinger <vapier at gentoo.org> wrote:

> Commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb introduced the mpc83xx_spi.c
> driver which gets compiled for everyone, but this obviously only builds for
> the ppc port.  I haven't been following the latest build updates, but the
> attached patch is one way to fix things.
> 
> Signed-off-by: Mike Frysinger <vapier at gentoo.org
> ---

there's a better fix here:

http://article.gmane.org/gmane.comp.boot-loaders.u-boot/36039

that I also pushed and have a pull request pending for WD to pick it up.

Kim

> diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile
> index 0b7a2df..1fdfb38 100644
> --- a/drivers/spi/Makefile
> +++ b/drivers/spi/Makefile
> @@ -25,7 +25,9 @@ include $(TOPDIR)/config.mk
>  
>  LIB	:= $(obj)libspi.a
>  
> -COBJS-y += mpc8xxx_spi.o
> +COBJS-ppc += mpc8xxx_spi.o
> +
> +COBJS-y += $(COBJS-$(ARCH))
>  
>  COBJS	:= $(COBJS-y)
>  SRCS	:= $(COBJS:.o=.c)
> 




More information about the U-Boot mailing list