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@...
---
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)
|