diff options
author | Jon Loeliger <jdl@freescale.com> | 2006-10-19 11:02:16 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-10-19 11:34:11 -0500 |
commit | 7237c033b02fe295880435f1eb80819a0c987532 (patch) | |
tree | c5fdba3041052213880ed6a22ac4500f326a5e68 /cpu/mpc86xx/Makefile | |
parent | 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b (diff) | |
download | u-boot-imx-7237c033b02fe295880435f1eb80819a0c987532.zip u-boot-imx-7237c033b02fe295880435f1eb80819a0c987532.tar.gz u-boot-imx-7237c033b02fe295880435f1eb80819a0c987532.tar.bz2 |
Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
in an effort to begin to unify the umpteen FSL I2C drivers that
are all otherwise very similar.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'cpu/mpc86xx/Makefile')
-rw-r--r-- | cpu/mpc86xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc86xx/Makefile b/cpu/mpc86xx/Makefile index ad5b36d..de5561e 100644 --- a/cpu/mpc86xx/Makefile +++ b/cpu/mpc86xx/Makefile @@ -30,7 +30,7 @@ LIB = $(obj)lib$(CPU).a START = start.o #resetvec.o SOBJS = cache.o COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o \ - pci.o pcie_indirect.o i2c.o spd_sdram.o + pci.o pcie_indirect.o spd_sdram.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |