diff options
author | Dave Liu <r63238@freescale.com> | 2007-08-01 15:00:15 +0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2007-08-10 01:13:11 -0500 |
commit | daab8c67d2defef73dc26ab07f0c3afd1b05d019 (patch) | |
tree | 01a759ed1aadf2d7a222292de55394ea7cfcdc1c /cpu/mpc83xx/Makefile | |
parent | 036575c544cf1b69654d8fb334bda69c6ff3da36 (diff) | |
download | u-boot-imx-daab8c67d2defef73dc26ab07f0c3afd1b05d019.zip u-boot-imx-daab8c67d2defef73dc26ab07f0c3afd1b05d019.tar.gz u-boot-imx-daab8c67d2defef73dc26ab07f0c3afd1b05d019.tar.bz2 |
mpc83xx: Consolidate the ECC support of 83xx
Remove the duplicated source code of ecc command on the <board>.c,
for reused, move these code to cpu/mpc83xx directory.
Signed-off-by: Dave Liu <daveliu@freescale.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'cpu/mpc83xx/Makefile')
-rw-r--r-- | cpu/mpc83xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc83xx/Makefile b/cpu/mpc83xx/Makefile index bb96f77..2329970 100644 --- a/cpu/mpc83xx/Makefile +++ b/cpu/mpc83xx/Makefile @@ -29,7 +29,7 @@ LIB = $(obj)lib$(CPU).a START = start.o COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o \ - spd_sdram.o qe_io.o pci.o + spd_sdram.o ecc.o qe_io.o pci.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |