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 /arch/powerpc/lib/interrupts.c | |
parent | dcac25a05e2bdf35be1e13c432d238007d1c3b9f (diff) | |
download | u-boot-5c8404aff16c2a207a11e1af5843e1009bf9fb01.tar.gz |
Timer: Remove set_timer completely
Diffstat (limited to 'arch/powerpc/lib/interrupts.c')
-rw-r--r-- | arch/powerpc/lib/interrupts.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/lib/interrupts.c b/arch/powerpc/lib/interrupts.c index f6031707ae..847ad37a28 100644 --- a/arch/powerpc/lib/interrupts.c +++ b/arch/powerpc/lib/interrupts.c @@ -146,8 +146,3 @@ ulong get_timer (ulong base) { return (timestamp - base); } - -void set_timer (ulong t) -{ - timestamp = t; -} |