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.
This commit is contained in:
Joel Sherrill
2008-08-31 17:03:54 +00:00
parent a903b7beff
commit 6427f1a24f
7 changed files with 43 additions and 72 deletions

View File

@@ -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;
}