summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/h8300
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-30 12:54:46 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-12-30 12:56:19 -0600
commit85f2486b5f923a6c150a106a0a4c70e215601091 (patch)
treece11134b53bd1aaed34ccf9b8754fa41be455bbf /c/src/lib/libbsp/h8300
parentm32cbsp: Add doxygen headers. (diff)
downloadrtems-85f2486b5f923a6c150a106a0a4c70e215601091.tar.bz2
libbsp misc: Fix comment formatting
Diffstat (limited to 'c/src/lib/libbsp/h8300')
-rw-r--r--c/src/lib/libbsp/h8300/h8sim/include/bsp.h33
1 files changed, 15 insertions, 18 deletions
diff --git a/c/src/lib/libbsp/h8300/h8sim/include/bsp.h b/c/src/lib/libbsp/h8300/h8sim/include/bsp.h
index 6a3660e33b..3c0621aeeb 100644
--- a/c/src/lib/libbsp/h8300/h8sim/include/bsp.h
+++ b/c/src/lib/libbsp/h8300/h8sim/include/bsp.h
@@ -1,17 +1,16 @@
/**
- * @file
- *
- * @ingroup h8300_bsp
- *
- * @brief h8 simulator definitions in gdb
- */
-
-/* bsp.h
+ * @file
+ *
+ * @ingroup h8300_bsp
+ *
+ * @brief h8 simulator definitions in gdb
*
* This include file contains some definitions specific to the
* h8 simulator in gdb.
- *
- * COPYRIGHT (c) 1989-1999.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2013.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -35,13 +34,12 @@ extern "C" {
#include <rtems/clockdrv.h>
/**
- * @defgroup h8300_bsp Clock Tick Support
- *
- * @ingroup h8300_h8sim
- *
- * @brief Clock Tick Support Package
- */
-
+ * @defgroup h8300_bsp Clock Tick Support
+ *
+ * @ingroup h8300_h8sim
+ *
+ * @brief Clock Tick Support Package
+ */
Thread clock_driver_sim_idle_body(uintptr_t);
#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
@@ -49,7 +47,6 @@ Thread clock_driver_sim_idle_body(uintptr_t);
* Simple spin delay in microsecond units for device drivers.
* This is very dependent on the clock speed of the target.
*/
-
#define rtems_bsp_delay( microseconds ) \
{ register uint32_t _delay=(microseconds); \
register uint32_t _tmp = 0; /* initialized to avoid warning */ \