diff options
Diffstat (limited to 'arch/sh/lib/time_sh2.c')
| -rw-r--r-- | arch/sh/lib/time_sh2.c | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/arch/sh/lib/time_sh2.c b/arch/sh/lib/time_sh2.c index 789b46f0e..a5c838bff 100644 --- a/arch/sh/lib/time_sh2.c +++ b/arch/sh/lib/time_sh2.c @@ -54,7 +54,7 @@ int timer_init(void)  	/* User Device 0 only */  	cmt_timer_stop(0); -	set_timer(CMT_TIMER_RESET); +	writew(CMT_TIMER_RESET, CMCOR_0);  	cmt_timer_start(0);  	return 0; @@ -90,15 +90,10 @@ ulong get_timer(ulong base)  	return (get_usec() / 1000) - base;  } -void set_timer(ulong t) -{ -	writew((u16) t, CMCOR_0); -} -  void reset_timer(void)  {  	cmt_timer_stop(0); -	set_timer(CMT_TIMER_RESET); +	writew(CMT_TIMER_RESET, CMCOR_0);  	cmt0_timer = 0;  	cmt_timer_start(0);  } |