diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-01-17 08:25:45 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-12 00:36:21 +0100 |
commit | 69018ce2e086e9caf35b914d675b82bc4888f077 (patch) | |
tree | b1d1fa5e876aad9350c0399d16b1e42d8da06de0 /drivers/qe/Makefile | |
parent | 37e3c62fa07a823e7569c872e3a9395d227ed8e3 (diff) | |
download | u-boot-imx-69018ce2e086e9caf35b914d675b82bc4888f077.zip u-boot-imx-69018ce2e086e9caf35b914d675b82bc4888f077.tar.gz u-boot-imx-69018ce2e086e9caf35b914d675b82bc4888f077.tar.bz2 |
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/Makefile | 3 |
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)) |