diff options
author | Stefan Roese <sr@denx.de> | 2007-10-22 15:09:59 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-10-31 21:20:50 +0100 |
commit | ad31e40bed042cb670d0036fea96435007afb838 (patch) | |
tree | b26a22f6d327c1fabc858e544e96bcf571fbc69a /cpu/ppc4xx/Makefile | |
parent | 764e7417ee5f6e25b1715720e7d7dd3487109385 (diff) | |
download | u-boot-imx-ad31e40bed042cb670d0036fea96435007afb838.zip u-boot-imx-ad31e40bed042cb670d0036fea96435007afb838.tar.gz u-boot-imx-ad31e40bed042cb670d0036fea96435007afb838.tar.bz2 |
ppc4xx: Rework of 4xx serial driver (1)
This patch starts the rework of the PPC4xx serial driver. First we split
the file into two seperate files, one 4xx_uart.c with the 405/440 UART
handling code and the other one iop480_uart.c with the UART code for the
PLX-Tech IOP480 PPC (PPC403 based).
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/Makefile')
-rw-r--r-- | cpu/ppc4xx/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpu/ppc4xx/Makefile b/cpu/ppc4xx/Makefile index bc65aa0..1947249 100644 --- a/cpu/ppc4xx/Makefile +++ b/cpu/ppc4xx/Makefile @@ -28,11 +28,11 @@ LIB = $(obj)lib$(CPU).a START = start.o resetvec.o kgdb.o SOBJS = dcr.o COBJS = 40x_spd_sdram.o 44x_spd_ddr.o 44x_spd_ddr2.o \ - 4xx_pci.o 4xx_pcie.o 4xx_enet.o \ - bedbug_405.o commproc.o \ - cpu.o cpu_init.o fdt.o gpio.o i2c.o interrupts.o \ - miiphy.o ndfc.o sdram.o serial.o speed.o \ - tlb.o traps.o usb_ohci.o usb.o usbdev.o + 4xx_enet.o 4xx_pci.o 4xx_pcie.o 4xx_uart.o \ + bedbug_405.o commproc.o cpu.o cpu_init.o \ + fdt.o gpio.o i2c.o interrupts.o iop480_uart.o \ + miiphy.o ndfc.o sdram.o speed.o \ + tlb.o traps.o usb.o usb_ohci.o usbdev.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |