diff options
author | Scott Wood <scottwood@freescale.com> | 2007-04-16 14:34:21 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2007-04-23 16:32:00 -0500 |
commit | 49ea3b6eafe606285ae4d5c378026153dde53200 (patch) | |
tree | f4904baae683092ed64f6a313e09c0e5f5cc2a17 /cpu/mpc83xx/Makefile | |
parent | 7c98e5193e93df6b9b651851d54b638a61ebb0ea (diff) |
mpc83xx: Add generic PCI setup code.
Board code can now request the generic setup code rather than having to
copy-and-paste it for themselves. Boards should be converted to use this
once they're tested with it.
Signed-off-by: Scott Wood <scottwood@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 4b9dcc8180f..bb96f774fe4 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 + spd_sdram.o qe_io.o pci.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |