summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-12-07 09:57:04 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-07 09:57:04 -0500
commitb7185613e8a572fd35b0bed21a8e0f1fdecfc668 (patch)
treef4e9b124a0ef923142b0cb2a7e5bb60824e0ef16 /cpukit/score/cpu/m68k
parentsapi misc: Clean up Doxygen GCI task #1 (diff)
downloadrtems-b7185613e8a572fd35b0bed21a8e0f1fdecfc668.tar.bz2
score misc: Clean up Doxygen GCI Task #12
http://www.google-melange.com/gci/task/view/google/gci2012/7983217
Diffstat (limited to 'cpukit/score/cpu/m68k')
-rw-r--r--cpukit/score/cpu/m68k/cpu.c35
1 files changed, 6 insertions, 29 deletions
diff --git a/cpukit/score/cpu/m68k/cpu.c b/cpukit/score/cpu/m68k/cpu.c
index 23051c28a6..3776345769 100644
--- a/cpukit/score/cpu/m68k/cpu.c
+++ b/cpukit/score/cpu/m68k/cpu.c
@@ -1,6 +1,10 @@
-/*
- * Motorola MC68xxx Dependent Source
+/**
+ * @file
*
+ * @brief Motorola MC68xxx Dependent Source
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -20,15 +24,6 @@
uint32_t _CPU_cacr_shadow;
#endif
-/* _CPU_Initialize
- *
- * This routine performs processor dependent initialization.
- *
- * INPUT PARAMETERS: NONE
- *
- * OUTPUT PARAMETERS: NONE
- */
-
void _CPU_Initialize(void)
{
#if ( M68K_HAS_VBR == 0 )
@@ -47,10 +42,6 @@ void _CPU_Initialize(void)
#endif /* M68K_HAS_VBR */
}
-/*
- * _CPU_ISR_Get_level
- */
-
uint32_t _CPU_ISR_Get_level( void )
{
uint32_t level;
@@ -111,20 +102,6 @@ void _CPU_ISR_install_raw_handler(
#endif /* M68K_HAS_VBR */
}
-/*
- * _CPU_ISR_install_vector
- *
- * This kernel routine installs the RTEMS handler for the
- * specified vector.
- *
- * Input parameters:
- * vector - interrupt vector number
- * new_handler - replacement ISR for this vector number
- * old_handler - former ISR for this vector number
- *
- * Output parameters: NONE
- */
-
void _CPU_ISR_install_vector(
uint32_t vector,
proc_ptr new_handler,