summaryrefslogtreecommitdiff
path: root/drivers/qe/Makefile
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2008-01-17 14:25:45 (GMT)
committerWolfgang Denk <wd@denx.de>2008-02-11 23:36:21 (GMT)
commit69018ce2e086e9caf35b914d675b82bc4888f077 (patch)
treeb1d1fa5e876aad9350c0399d16b1e42d8da06de0 /drivers/qe/Makefile
parent37e3c62fa07a823e7569c872e3a9395d227ed8e3 (diff)
downloadu-boot-fsl-qoriq-69018ce2e086e9caf35b914d675b82bc4888f077.tar.xz
QE: Move FDT support into a common file
Move the flat device tree setup for QE related devices into a common file shared between 83xx & 85xx platforms that have QE's. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'drivers/qe/Makefile')
-rw-r--r--drivers/qe/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/qe/Makefile b/drivers/qe/Makefile
index 4844181..ec5aa73 100644
--- a/drivers/qe/Makefile
+++ b/drivers/qe/Makefile
@@ -24,7 +24,8 @@ include $(TOPDIR)/config.mk
LIB := $(obj)qe.a
-COBJS := qe.o uccf.o uec.o uec_phy.o
+COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
+COBJS := qe.o uccf.o uec.o uec_phy.o $(COBJS-y)
SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))