diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-01-31 08:53:44 +0100 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-01-31 10:16:01 +0100 | 
| commit | 012d5bab09a534e4800b02f50cf508e6837202ea (patch) | |
| tree | d4d83a434075c8a4edcb96d021f6f3213aaa9e0d | |
| parent | f693f501d67434df1f815fd1824a71973ae08207 (diff) | |
| download | olio-uboot-2014.01-012d5bab09a534e4800b02f50cf508e6837202ea.tar.xz olio-uboot-2014.01-012d5bab09a534e4800b02f50cf508e6837202ea.zip | |
ixp: Move conditional compilation to Makefile
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
| -rw-r--r-- | cpu/ixp/Makefile | 12 | ||||
| -rw-r--r-- | cpu/ixp/pci.c | 4 | ||||
| -rw-r--r-- | cpu/ixp/timer.c | 2 | 
3 files changed, 9 insertions, 9 deletions
| diff --git a/cpu/ixp/Makefile b/cpu/ixp/Makefile index e1fb327bb..afa972a91 100644 --- a/cpu/ixp/Makefile +++ b/cpu/ixp/Makefile @@ -26,10 +26,16 @@ include $(TOPDIR)/config.mk  LIB	= $(obj)lib$(CPU).a  START	= start.o -COBJS	= serial.o interrupts.o cpu.o timer.o pci.o +COBJS-y	+= cpu.o +COBJS-y	+= interrupts.o +COBJS-$(CONFIG_PCI) += pci.o +COBJS-y	+= serial.o +ifndef CONFIG_USE_IRQ +COBJS-y	+= timer.o +endif -SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) -OBJS	:= $(addprefix $(obj),$(SOBJS) $(COBJS)) +SRCS	:= $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) +OBJS	:= $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))  START	:= $(addprefix $(obj),$(START))  all:	$(obj).depend $(START) $(LIB) diff --git a/cpu/ixp/pci.c b/cpu/ixp/pci.c index 8c6b0b21b..aae3d3d2c 100644 --- a/cpu/ixp/pci.c +++ b/cpu/ixp/pci.c @@ -24,9 +24,6 @@  #include <common.h> - -#ifdef CONFIG_PCI -  #include <asm/processor.h>  #include <asm/io.h>  #include <pci.h> @@ -572,4 +569,3 @@ pci_dev_t pci_find_devices (struct pci_device_id * ids, int devNo)  	}  	return -1;  } -#endif	/* CONFIG_PCI */ diff --git a/cpu/ixp/timer.c b/cpu/ixp/timer.c index 09d8ad560..deb227a1a 100644 --- a/cpu/ixp/timer.c +++ b/cpu/ixp/timer.c @@ -32,7 +32,6 @@  #include <common.h>  #include <asm/arch/ixp425.h> -#ifndef CONFIG_USE_IRQ  ulong get_timer (ulong base)  {         return get_timer_masked () - base; @@ -80,4 +79,3 @@ ulong get_timer_masked (void)  	}  	return (reload_constant - current);  } -#endif /* #ifndef CONFIG_USE_IRQ */ |