summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/avr
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/avr
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/avr')
-rw-r--r--cpukit/score/cpu/avr/cpu.c46
1 files changed, 6 insertions, 40 deletions
diff --git a/cpukit/score/cpu/avr/cpu.c b/cpukit/score/cpu/avr/cpu.c
index a3153fc72e..75084821dc 100644
--- a/cpukit/score/cpu/avr/cpu.c
+++ b/cpukit/score/cpu/avr/cpu.c
@@ -1,7 +1,10 @@
-/*
- * AVR CPU Dependent Source
- *
+/**
+ * @file
*
+ * @brief AVR CPU Dependent Source
+ */
+
+/*
* COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
@@ -20,16 +23,6 @@
#include <rtems/bspIo.h> /* XXX remove me later */
-/* _CPU_Initialize
- *
- * This routine performs processor dependent initialization.
- *
- * INPUT PARAMETERS: NONE
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
void _CPU_Initialize(void)
{
@@ -43,14 +36,6 @@ void _CPU_Initialize(void)
/* FP context initialization support goes here */
}
-/*
- * _CPU_ISR_Get_level
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
uint32_t _CPU_ISR_Get_level( void )
{
/*
@@ -81,25 +66,6 @@ void _CPU_ISR_install_raw_handler(
*/
}
-/*
- * _CPU_ISR_install_vector
- *
- * This kernel routine installs the RTEMS handler for the
- * specified vector.
- *
- * Input parameters:
- * vector - interrupt vector number
- * old_handler - former ISR for this vector number
- * new_handler - replacement ISR for this vector number
- *
- * Output parameters: NONE
- *
- *
- * NO_CPU Specific Information:
- *
- * XXX document implementation including references if appropriate
- */
-
void _CPU_ISR_install_vector(
uint32_t vector,
proc_ptr new_handler,