diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-08-26 15:01:38 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-08-27 02:06:05 +0200 |
commit | b5710d9974f6f0f3ddb4e67d6cccc262ab37049e (patch) | |
tree | 348bb20a23db99e259a2959b0e2a20e7957dfe15 /cpu/mpc86xx/Makefile | |
parent | 9bd4e5911b750837515466bc7449087698b88e0e (diff) | |
download | u-boot-imx-b5710d9974f6f0f3ddb4e67d6cccc262ab37049e.zip u-boot-imx-b5710d9974f6f0f3ddb4e67d6cccc262ab37049e.tar.gz u-boot-imx-b5710d9974f6f0f3ddb4e67d6cccc262ab37049e.tar.bz2 |
FSL DDR: Remove old SPD support from cpu/mpc86xx
All 86xx boards have been converted to the new code so we can
remove the old SPD DDR setup code.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc86xx/Makefile')
-rw-r--r-- | cpu/mpc86xx/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cpu/mpc86xx/Makefile b/cpu/mpc86xx/Makefile index 12ad66d..a9767ad 100644 --- a/cpu/mpc86xx/Makefile +++ b/cpu/mpc86xx/Makefile @@ -39,15 +39,9 @@ COBJS-y += interrupts.o COBJS-$(CONFIG_OF_LIBFDT) += fdt.o -ifeq ($(CONFIG_FSL_DDR2),y) COBJS-$(CONFIG_MPC8641) += ddr-8641.o # 8610 & 8641 are identical w/regards to DDR COBJS-$(CONFIG_MPC8610) += ddr-8641.o -endif - -ifneq ($(CONFIG_FSL_DDR2),y) -COBJS-y += spd_sdram.o -endif SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y)) |