diff options
author | Yusuke Goda <goda.yusuke@renesas.com> | 2008-03-05 14:30:02 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2008-03-28 14:16:12 +0900 |
commit | 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28 (patch) | |
tree | 3bdad7825893b07bfa8c24d77a35878a3af9cd56 /cpu/sh4/Makefile | |
parent | b55523efff2ae11f0b9ae3cc405893c32eb78156 (diff) | |
download | u-boot-imx-1a2334a4eb6386d7cd35d9de5fa39af2c764ad28.zip u-boot-imx-1a2334a4eb6386d7cd35d9de5fa39af2c764ad28.tar.gz u-boot-imx-1a2334a4eb6386d7cd35d9de5fa39af2c764ad28.tar.bz2 |
sh: Add support PCI of SuperH and SH7780
This patch add support PCI of SuperH base code and SH7780 specific code.
Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'cpu/sh4/Makefile')
-rw-r--r-- | cpu/sh4/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpu/sh4/Makefile b/cpu/sh4/Makefile index 1bb8bd7..7a53cb6 100644 --- a/cpu/sh4/Makefile +++ b/cpu/sh4/Makefile @@ -29,7 +29,8 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a START = start.o -OBJS = cpu.o interrupts.o watchdog.o time.o cache.o +OBJS = cpu.o interrupts.o watchdog.o time.o cache.o \ + pci-sh4.o pci-sh7780.o all: .depend $(START) $(LIB) |