diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-07-15 02:18:12 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-07-26 14:52:17 +0200 |
commit | 5c8404aff16c2a207a11e1af5843e1009bf9fb01 (patch) | |
tree | 65d07a585508bf1dab4ddabf2768e44fb43d6f1f /board/armltd | |
parent | dcac25a05e2bdf35be1e13c432d238007d1c3b9f (diff) |
Timer: Remove set_timer completely
Diffstat (limited to 'board/armltd')
-rw-r--r-- | board/armltd/integrator/timer.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/board/armltd/integrator/timer.c b/board/armltd/integrator/timer.c index 7562ffa87d7..5406066d151 100644 --- a/board/armltd/integrator/timer.c +++ b/board/armltd/integrator/timer.c @@ -117,12 +117,6 @@ ulong get_timer (ulong base_ticks) return get_timer_masked () - base_ticks; } -void set_timer (ulong ticks) -{ - timestamp = ticks; - total_count = ticks * div_timer; -} - /* delay usec useconds */ void __udelay (unsigned long usec) { |