summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/mpc8xx
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-31 17:03:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-31 17:03:54 +0000
commit6427f1a24f17c44f233d9b7fe84ac74b099ca85e (patch)
tree37fda00b2b5b2a7d945474de264481c6b64dfcb4 /c/src/lib/libcpu/powerpc/mpc8xx
parent2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-6427f1a24f17c44f233d9b7fe84ac74b099ca85e.tar.bz2
2008-08-31 Joel Sherrill <joel.sherrill@oarcorp.com>
* mpc505/timer/timer.c, mpc5xx/timer/timer.c, mpc6xx/timer/timer.c, mpc8260/timer/timer.c, mpc8xx/timer/timer.c, ppc403/timer/timer.c: Rename timer driver methods to follow RTEMS programming conventions.
Diffstat (limited to 'c/src/lib/libcpu/powerpc/mpc8xx')
-rw-r--r--c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c17
1 files changed, 6 insertions, 11 deletions
diff --git a/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c b/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c
index 87d1486695..dd58cbe78e 100644
--- a/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c
+++ b/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c
@@ -46,7 +46,7 @@
#include <mpc8xx.h>
static volatile uint32_t Timer_starting;
-static rtems_boolean Timer_driver_Find_average_overhead;
+static rtems_boolean benchmark_timer_find_average_overhead;
/*
* This is so small that this code will be reproduced where needed.
@@ -60,7 +60,7 @@ static inline uint32_t get_itimer(void)
return ret;
}
-void Timer_initialize(void)
+void benchmark_timer_initialize(void)
{
/* set interrupt level and enable timebase. This should never */
/* generate an interrupt however. */
@@ -69,7 +69,7 @@ void Timer_initialize(void)
Timer_starting = get_itimer();
}
-int Read_timer(void)
+int benchmark_timer_read(void)
{
uint32_t clicks;
uint32_t total;
@@ -80,7 +80,7 @@ int Read_timer(void)
total = clicks - Timer_starting;
- if ( Timer_driver_Find_average_overhead == 1 )
+ if ( benchmark_timer_find_average_overhead == 1 )
return total; /* in XXX microsecond units */
else {
@@ -91,12 +91,7 @@ int Read_timer(void)
}
}
-rtems_status_code Empty_function(void)
+void benchmark_timer_disable_subtracting_average_overhead(rtems_boolean find_flag)
{
- return RTEMS_SUCCESSFUL;
-}
-
-void Set_find_average_overhead(rtems_boolean find_flag)
-{
- Timer_driver_Find_average_overhead = find_flag;
+ benchmark_timer_find_average_overhead = find_flag;
}