diff options
| author | Graeme Russ <graeme.russ@gmail.com> | 2011-07-15 02:19:44 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-07-26 14:53:30 +0200 | 
| commit | 4769be21cca65f1e7bef27bc024d886842bc6bad (patch) | |
| tree | 47053c2ed79e6e43b1b6fd49b585fe53028ff6a5 /arch/mips/cpu/mips32/time.c | |
| parent | e110c4fe44edc34addee4839a1d20c0fbb076ad4 (diff) | |
| download | olio-uboot-2014.01-4769be21cca65f1e7bef27bc024d886842bc6bad.tar.xz olio-uboot-2014.01-4769be21cca65f1e7bef27bc024d886842bc6bad.zip | |
Timer: Remove reset_timer() for non-Nios2 arches
Diffstat (limited to 'arch/mips/cpu/mips32/time.c')
| -rw-r--r-- | arch/mips/cpu/mips32/time.c | 6 | 
1 files changed, 0 insertions, 6 deletions
| diff --git a/arch/mips/cpu/mips32/time.c b/arch/mips/cpu/mips32/time.c index b0a9c1f67..350896a2a 100644 --- a/arch/mips/cpu/mips32/time.c +++ b/arch/mips/cpu/mips32/time.c @@ -42,12 +42,6 @@ int timer_init(void)  	return 0;  } -void reset_timer(void) -{ -	timestamp = 0; -	write_c0_compare(read_c0_count() + CYCLES_PER_JIFFY); -} -  ulong get_timer(ulong base)  {  	unsigned int count; |