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 /cpu/ixp/timer.c | |
parent | f693f501d67434df1f815fd1824a71973ae08207 (diff) | |
download | u-boot-imx-012d5bab09a534e4800b02f50cf508e6837202ea.zip u-boot-imx-012d5bab09a534e4800b02f50cf508e6837202ea.tar.gz u-boot-imx-012d5bab09a534e4800b02f50cf508e6837202ea.tar.bz2 |
ixp: Move conditional compilation to Makefile
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/ixp/timer.c')
-rw-r--r-- | cpu/ixp/timer.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cpu/ixp/timer.c b/cpu/ixp/timer.c index 09d8ad5..deb227a 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 */ |