summaryrefslogtreecommitdiff
path: root/firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c')
-rw-r--r--firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c b/firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
index ef5c91169d..1b620e9c4f 100644
--- a/firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
+++ b/firmware/target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
@@ -48,7 +48,7 @@ void pitc_handler(void)
48 } 48 }
49} 49}
50 50
51bool __timer_set(long cycles, bool start) 51bool timer_set(long cycles, bool start)
52{ 52{
53 if (cycles < 1000) /* Max value on PITC?? */ 53 if (cycles < 1000) /* Max value on PITC?? */
54 { 54 {
@@ -67,7 +67,7 @@ bool __timer_set(long cycles, bool start)
67 return false; 67 return false;
68} 68}
69 69
70bool __timer_start(void) 70bool timer_start(void)
71{ 71{
72 bool retval = true; 72 bool retval = true;
73 volatile unsigned long pimr = 0; 73 volatile unsigned long pimr = 0;
@@ -101,7 +101,7 @@ bool __timer_start(void)
101 return retval; 101 return retval;
102} 102}
103 103
104void __timer_stop(void) 104void timer_stop(void)
105{ 105{
106 volatile unsigned long pimr = 0; 106 volatile unsigned long pimr = 0;
107 107