summaryrefslogtreecommitdiffstats
path: root/cpukit/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-19 19:29:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-19 19:29:19 +0000
commitaad655835a7d1b58fc8f70ba95516a337516446c (patch)
tree601b118e745a2fe08b576e2599b00cd51e7d52fd /cpukit/include
parent2009-02-19 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-aad655835a7d1b58fc8f70ba95516a337516446c.tar.bz2
2009-02-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/rtems/irq-extension.h, include/rtems/irq.h: Spelling errors and spacing.
Diffstat (limited to 'cpukit/include')
-rw-r--r--cpukit/include/rtems/irq-extension.h2
-rw-r--r--cpukit/include/rtems/irq.h21
2 files changed, 10 insertions, 13 deletions
diff --git a/cpukit/include/rtems/irq-extension.h b/cpukit/include/rtems/irq-extension.h
index 5bbc51cb14..20324fe1f4 100644
--- a/cpukit/include/rtems/irq-extension.h
+++ b/cpukit/include/rtems/irq-extension.h
@@ -34,7 +34,7 @@ extern "C" {
*
* @ingroup ClassicINTR
*
- * In addition to the classic API interrupt handler with a handle are
+ * In addition to the Classic API interrupt handler with a handle are
* supported. You can also install multiple shared handler for one interrupt
* vector.
*
diff --git a/cpukit/include/rtems/irq.h b/cpukit/include/rtems/irq.h
index 12a501bd4a..2199c41447 100644
--- a/cpukit/include/rtems/irq.h
+++ b/cpukit/include/rtems/irq.h
@@ -77,7 +77,7 @@ typedef struct __rtems_irq_connect_data__ {
* function enabling to know what interrupt may currently occur
* if someone manipulates the i8259s interrupt mask without care...
*/
- rtems_irq_is_enabled isOn;
+ rtems_irq_is_enabled isOn;
#ifdef BSP_SHARED_HANDLER_SUPPORT
/*
@@ -119,7 +119,7 @@ typedef struct {
| Function Prototypes.
+--------------------------------------------------------------------------*/
/*
- * ------------------------ RTEMS Single Irq Handler Mngt Routines ----------------
+ * -------------------- RTEMS Single Irq Handler Mngt Routines ----------------
*/
/*
* function to connect a particular irq handler. This hanlder will NOT be called
@@ -138,11 +138,11 @@ typedef struct {
* As a result the hdl function provided
*
* a) can perfectly be written is C,
- * b) may also well directly call the part of the RTEMS API that can be used
- * from interrupt level,
+ * b) may also well directly call the part of the RTEMS API that can be
+ * used from interrupt level,
* c) It only responsible for handling the jobs that need to be done at
- * the device level including (aknowledging/re-enabling the interrupt at device,
- * level, getting the data,...)
+ * the device level including (aknowledging/re-enabling the interrupt at
+ * device level, getting the data,...)
*
* When returning from the function, the following will be performed by
* the RTEMS irq epilogue :
@@ -170,15 +170,14 @@ int BSP_remove_rtems_irq_handler (const rtems_irq_connect_data*);
/*
- * ------------------------ RTEMS Shared Irq Handler Mngt Routines ----------------
+ * ----------------- RTEMS Shared Irq Handler Mngt Routines ----------------
*/
#ifdef BSP_SHARED_HANDLER_SUPPORT
int BSP_install_rtems_shared_irq_handler (const rtems_irq_connect_data*);
#endif
-
/*
- * ------------------------ RTEMS Global Irq Handler Mngt Routines ----------------
+ * ----------------- RTEMS Global Irq Handler Mngt Routines ----------------
*/
/*
* (Re) Initialize the RTEMS interrupt management.
@@ -201,14 +200,12 @@ int BSP_install_rtems_shared_irq_handler (const rtems_irq_connect_data*);
*/
int BSP_rtems_irq_mngt_set(rtems_irq_global_settings* config);
+
/*
* (Re) get info on current RTEMS interrupt management.
*/
int BSP_rtems_irq_mngt_get(rtems_irq_global_settings**);
-
-
-
#ifdef __cplusplus
}
#endif