summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-11 15:45:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-11 15:45:54 +0000
commit0f9ecc4ecf426a1710a863e524352df78ff2a3ae (patch)
tree7ddc1d1ed6398a05d0bd31def9e8f1bd79802a2d /c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c
parent2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-0f9ecc4ecf426a1710a863e524352df78ff2a3ae.tar.bz2
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* mcf5206/clock/ckinit.c, mcf5272/clock/ckinit.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c b/c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c
index b8e8b4024b..0724bc2908 100644
--- a/c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c
+++ b/c/src/lib/libcpu/m68k/mcf5206/clock/ckinit.c
@@ -79,7 +79,7 @@ Clock_isr (rtems_vector_number vector)
void
Clock_exit(void)
{
- if (BSP_Configuration.ticks_per_timeslice)
+ if (rtems_configuration_get_ticks_per_timeslice())
{
/* disable all timer1 interrupts */
*MCF5206E_IMR(MBAR) |= MCF5206E_INTR_BIT(MCF5206E_INTR_TIMER_1);
@@ -107,7 +107,7 @@ static void
Install_clock(rtems_isr_entry clock_isr)
{
Clock_driver_ticks = 0;
- if (BSP_Configuration.ticks_per_timeslice)
+ if (rtems_configuration_get_ticks_per_timeslice())
{
/* Configure timer1 interrupts */
*MCF5206E_ICR(MBAR,MCF5206E_INTR_TIMER_1) =
@@ -133,7 +133,7 @@ Install_clock(rtems_isr_entry clock_isr)
MCF5206E_TMR_RST;
/* Set the timer timeout value from the BSP config */
- *MCF5206E_TRR(MBAR, 1) = BSP_Configuration.microseconds_per_tick - 1;
+ *MCF5206E_TRR(MBAR, 1) = rtems_configuration_get_microseconds_per_tick() - 1;
/* Feed system frequency to the timer */
*MCF5206E_TMR(MBAR, 1) |= MCF5206E_TMR_ICLK_MSCLK;