summaryrefslogtreecommitdiff
path: root/firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c')
-rw-r--r--firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c b/firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
index 884b0803a2..4565f79751 100644
--- a/firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
+++ b/firmware/target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
@@ -48,7 +48,7 @@ static void stop_timer(void)
48 INTPND = TIMER0_MASK; 48 INTPND = TIMER0_MASK;
49} 49}
50 50
51bool __timer_set(long cycles, bool start) 51bool timer_set(long cycles, bool start)
52{ 52{
53 bool retval = false; 53 bool retval = false;
54 54
@@ -87,7 +87,7 @@ bool __timer_set(long cycles, bool start)
87 return retval; 87 return retval;
88} 88}
89 89
90bool __timer_start(void) 90bool timer_start(void)
91{ 91{
92 bool retval = true; 92 bool retval = true;
93 93
@@ -122,7 +122,7 @@ bool __timer_start(void)
122 return retval; 122 return retval;
123} 123}
124 124
125void __timer_stop(void) 125void timer_stop(void)
126{ 126{
127 int oldstatus = disable_interrupt_save(IRQ_FIQ_STATUS); 127 int oldstatus = disable_interrupt_save(IRQ_FIQ_STATUS);
128 stop_timer(); 128 stop_timer();