summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/moxie/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-02-28 13:08:21 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-02-28 13:08:51 -0600
commit2adc507f8f98e20359c806522fdef46490e7da9b (patch)
tree660a68452d1a70f79d3e3d0fc252a2b85aa5fe8d /cpukit/score/cpu/moxie/cpu.c
parentlibchip/rtc: Fixed 19 compiler warnings (diff)
downloadrtems-2adc507f8f98e20359c806522fdef46490e7da9b.tar.bz2
cpukit moxie: Style corrections
Diffstat (limited to 'cpukit/score/cpu/moxie/cpu.c')
-rw-r--r--cpukit/score/cpu/moxie/cpu.c22
1 files changed, 5 insertions, 17 deletions
diff --git a/cpukit/score/cpu/moxie/cpu.c b/cpukit/score/cpu/moxie/cpu.c
index b5e2a2b305..e0a14b0cd6 100644
--- a/cpukit/score/cpu/moxie/cpu.c
+++ b/cpukit/score/cpu/moxie/cpu.c
@@ -27,8 +27,6 @@
*
* INPUT PARAMETERS: NONE
*/
-
-
void _CPU_Initialize(void)
{
/*
@@ -41,23 +39,19 @@ void _CPU_Initialize(void)
/* FP context initialization support goes here */
}
-/*PAGE
- *
+/*
* _CPU_ISR_Get_level
*
* This routine returns the current interrupt level.
*/
-
uint32_t _CPU_ISR_Get_level( void )
{
return 0;
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_raw_handler
*/
-
void _CPU_ISR_install_raw_handler(
uint32_t vector,
proc_ptr new_handler,
@@ -72,8 +66,7 @@ void _CPU_ISR_install_raw_handler(
/* H8BD_Install_IRQ(vector,new_handler,old_handler); */
}
-/*PAGE
- *
+/*
* _CPU_ISR_install_vector
*
* This kernel routine installs the RTEMS handler for the
@@ -87,7 +80,6 @@ void _CPU_ISR_install_raw_handler(
* Output parameters: NONE
*
*/
-
void _CPU_ISR_install_vector(
uint32_t vector,
proc_ptr new_handler,
@@ -112,17 +104,14 @@ void _CPU_ISR_install_vector(
_ISR_Vector_table[ vector ] = new_handler;
}
-/*PAGE
- *
+/*
* _CPU_Install_interrupt_stack
*/
-
void _CPU_Install_interrupt_stack( void )
{
}
-/*PAGE
- *
+/*
* _CPU_Thread_Idle_body
*
* NOTES:
@@ -137,7 +126,6 @@ void _CPU_Install_interrupt_stack( void )
* also be a problem with other on-chip peripherals. So use this
* hook with caution.
*/
-
#if 0
void *_CPU_Thread_Idle_body( uintptr_t ignored )
{