summaryrefslogtreecommitdiffstats
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)
}
}
-bool __timer_set(long cycles, bool start)
+bool timer_set(long cycles, bool start)
{
if (cycles < 1000) /* Max value on PITC?? */
{
@@ -67,7 +67,7 @@ bool __timer_set(long cycles, bool start)
return false;
}
-bool __timer_start(void)
+bool timer_start(void)
{
bool retval = true;
volatile unsigned long pimr = 0;
@@ -101,7 +101,7 @@ bool __timer_start(void)
return retval;
}
-void __timer_stop(void)
+void timer_stop(void)
{
volatile unsigned long pimr = 0;