summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/m68k/mcf5206/timer
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 17:14:20 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-30 17:14:20 +0000
commit1857b0082d4c6a6848afd4600a8f64b0572af097 (patch)
tree04084aab36cc3836c023551fcbc1087c0397c226 /c/src/lib/libcpu/m68k/mcf5206/timer
parentWhitespace removal. (diff)
downloadrtems-1857b0082d4c6a6848afd4600a8f64b0572af097.tar.bz2
Whitespace removal.
Diffstat (limited to 'c/src/lib/libcpu/m68k/mcf5206/timer')
-rw-r--r--c/src/lib/libcpu/m68k/mcf5206/timer/timer.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/c/src/lib/libcpu/m68k/mcf5206/timer/timer.c b/c/src/lib/libcpu/m68k/mcf5206/timer/timer.c
index 3d30b98dcc..8dbb9d8613 100644
--- a/c/src/lib/libcpu/m68k/mcf5206/timer/timer.c
+++ b/c/src/lib/libcpu/m68k/mcf5206/timer/timer.c
@@ -18,7 +18,7 @@
* found in the file LICENSE in this distribution or at
*
* http://www.rtems.com/license/LICENSE.
- *
+ *
* $Id$
*/
@@ -26,7 +26,7 @@
#include <bsp.h>
#include "mcf5206/mcf5206e.h"
-#define TRR2_VAL 65530
+#define TRR2_VAL 65530
uint32_t Timer_interrupts;
@@ -50,16 +50,16 @@ benchmark_timer_initialize(void)
{
/* Catch timer2 interrupts */
set_vector(timerisr, BSP_INTVEC_TIMER2, 0);
-
+
/* Initialize interrupts for timer2 */
*MCF5206E_ICR(MBAR, MCF5206E_INTR_TIMER_2) =
MCF5206E_ICR_AVEC |
((BSP_INTLVL_TIMER2 << MCF5206E_ICR_IL_S) & MCF5206E_ICR_IL) |
((BSP_INTPRIO_TIMER2 << MCF5206E_ICR_IP_S) & MCF5206E_ICR_IP);
-
+
/* Enable interrupts from timer2 */
*MCF5206E_IMR(MBAR) &= ~MCF5206E_INTR_BIT(MCF5206E_INTR_TIMER_2);
-
+
/* Reset Timer */
*MCF5206E_TMR(MBAR, 2) = MCF5206E_TMR_RST;
*MCF5206E_TMR(MBAR, 2) = MCF5206E_TMR_ICLK_STOP;
@@ -113,13 +113,13 @@ benchmark_timer_read( void )
* rolled over.
*/
clicks = *MCF5206E_TCN(MBAR, 2);
-
+
/* Stop Timer... */
*MCF5206E_TMR(MBAR, 2) = MCF5206E_TMR_ICLK_STOP |
MCF5206E_TMR_RST;
/*
- * Total is calculated by taking into account the number of timer
+ * Total is calculated by taking into account the number of timer
* overflow interrupts since the timer was initialized and clicks
* since the last interrupts.
*/