summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/i386/rtems/score
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 11:08:36 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-16 11:08:36 +0000
commit84c5345224a93f1dc6b67db749b3d3e7020ac6cb (patch)
tree6234fbe51f02a766ece52732f3711860dc712054 /cpukit/score/cpu/i386/rtems/score
parent2004-04-16 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-84c5345224a93f1dc6b67db749b3d3e7020ac6cb.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/score/cpu/i386/rtems/score')
-rw-r--r--cpukit/score/cpu/i386/rtems/score/cpu.h14
-rw-r--r--cpukit/score/cpu/i386/rtems/score/i386.h14
-rw-r--r--cpukit/score/cpu/i386/rtems/score/interrupts.h4
-rw-r--r--cpukit/score/cpu/i386/rtems/score/registers.h8
4 files changed, 20 insertions, 20 deletions
diff --git a/cpukit/score/cpu/i386/rtems/score/cpu.h b/cpukit/score/cpu/i386/rtems/score/cpu.h
index 6f359fd578..eb75cedcf9 100644
--- a/cpukit/score/cpu/i386/rtems/score/cpu.h
+++ b/cpukit/score/cpu/i386/rtems/score/cpu.h
@@ -43,7 +43,7 @@ extern "C" {
/*
* Does the RTEMS invoke the user's ISR with the vector number and
- * a pointer to the saved interrupt frame (1) or just the vector
+ * a pointer to the saved interrupt frame (1) or just the vector
* number (0)?
*/
@@ -70,7 +70,7 @@ extern "C" {
/*
* Does this port provide a CPU dependent IDLE task implementation?
- *
+ *
* If TRUE, then the routine _CPU_Thread_Idle_body
* must be provided and is the default IDLE thread body instead of
* _CPU_Thread_Idle_body.
@@ -78,7 +78,7 @@ extern "C" {
* If FALSE, then use the generic IDLE thread body if the BSP does
* not provide one.
*/
-
+
#define CPU_PROVIDES_IDLE_THREAD_BODY TRUE
/*
@@ -174,7 +174,7 @@ typedef enum {
I386_EXCEPTION_ENTER_RDBG = 50 /* to enter manually RDBG */
} Intel_symbolic_exception_name;
-
+
/*
* The following table contains the information required to configure
@@ -199,7 +199,7 @@ typedef struct {
} rtems_cpu_table;
/*
- * Macros to access required entires in the CPU Table are in
+ * Macros to access required entires in the CPU Table are in
* the file rtems/system.h.
*/
@@ -429,10 +429,10 @@ void _CPU_Initialize(
/*
* _CPU_ISR_install_raw_handler
*
- * This routine installs a "raw" interrupt handler directly into the
+ * This routine installs a "raw" interrupt handler directly into the
* processor's vector table.
*/
-
+
void _CPU_ISR_install_raw_handler(
uint32_t vector,
proc_ptr new_handler,
diff --git a/cpukit/score/cpu/i386/rtems/score/i386.h b/cpukit/score/cpu/i386/rtems/score/i386.h
index 1e039b569f..7116ce1911 100644
--- a/cpukit/score/cpu/i386/rtems/score/i386.h
+++ b/cpukit/score/cpu/i386/rtems/score/i386.h
@@ -38,7 +38,7 @@ extern "C" {
*
* CPU Model Feature Flags:
*
- * I386_HAS_BSWAP: Defined to "1" if the instruction for endian swapping
+ * I386_HAS_BSWAP: Defined to "1" if the instruction for endian swapping
* (bswap) should be used. This instruction appears to
* be present in all i486's and above.
*
@@ -145,7 +145,7 @@ static inline unsigned int i386_swap_u16(
/*
* Added for pagination management
*/
-
+
static inline unsigned int i386_get_cr0()
{
register unsigned int segment = 0;
@@ -213,26 +213,26 @@ void *i386_Physical_to_logical(
*/
/* segment access routines */
-
+
#define get_cs() i386_get_cs()
#define get_ds() i386_get_ds()
#define get_es() i386_get_es()
#define get_ss() i386_get_ss()
#define get_fs() i386_get_fs()
#define get_gs() i386_get_gs()
-
+
#define CPU_swap_u32( _value ) i386_swap_u32( _value )
#define CPU_swap_u16( _value ) i386_swap_u16( _value )
-
+
/* i80x86 I/O instructions */
-
+
#define outport_byte( _port, _value ) i386_outport_byte( _port, _value )
#define outport_word( _port, _value ) i386_outport_word( _port, _value )
#define outport_long( _port, _value ) i386_outport_long( _port, _value )
#define inport_byte( _port, _value ) i386_inport_byte( _port, _value )
#define inport_word( _port, _value ) i386_inport_word( _port, _value )
#define inport_long( _port, _value ) i386_inport_long( _port, _value )
-
+
#ifdef __cplusplus
}
diff --git a/cpukit/score/cpu/i386/rtems/score/interrupts.h b/cpukit/score/cpu/i386/rtems/score/interrupts.h
index 73cf30b724..7024859392 100644
--- a/cpukit/score/cpu/i386/rtems/score/interrupts.h
+++ b/cpukit/score/cpu/i386/rtems/score/interrupts.h
@@ -8,7 +8,7 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
+ *
* $Id$
*
* Applications must not include this file directly.
@@ -70,6 +70,6 @@ typedef int (*rtems_raw_irq_is_enabled) (const struct __rtems_raw_irq_connect_d
#define _CPU_ISR_Disable( _level ) i386_disable_interrupts( _level )
#define _CPU_ISR_Enable( _level ) i386_enable_interrupts( _level )
-
+
#endif
#endif
diff --git a/cpukit/score/cpu/i386/rtems/score/registers.h b/cpukit/score/cpu/i386/rtems/score/registers.h
index b3dd9f436f..41e97abb16 100644
--- a/cpukit/score/cpu/i386/rtems/score/registers.h
+++ b/cpukit/score/cpu/i386/rtems/score/registers.h
@@ -1,5 +1,5 @@
/* registers.h
- *
+ *
* This file contains definition and constants related to Intel Cpu
*
* COPYRIGHT (c) 1998 valette@crf.canon.fr
@@ -106,7 +106,7 @@ typedef struct {
unsigned int virtual_intr_pending : 1;
unsigned int id : 1;
unsigned int : 2;
-
+
/*
* fourth byte : bits 24->31 : UNUSED
*/
@@ -128,7 +128,7 @@ typedef struct {
unsigned int monitor_coproc : 1;
unsigned int coproc_soft_emul : 1;
unsigned int floating_instr_except : 1;
-
+
unsigned int extension_type : 1;
unsigned int numeric_error : 1;
unsigned int : 2;
@@ -149,7 +149,7 @@ typedef struct {
* fourth byte 24->31
*/
unsigned int : 4;
-
+
unsigned int : 1;
unsigned int no_write_through : 1;
unsigned int page_level_cache_disable : 1;