summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/armulator/startup
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-21 10:43:04 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-21 10:43:04 +0000
commit6128a4aa5e791ed4e0a655bfd346a52d92da7883 (patch)
treeaf53ca3f67ce405b6fbc6c98399c8e0c87e01a9e /c/src/lib/libbsp/arm/armulator/startup
parent2004-04-20 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-6128a4aa5e791ed4e0a655bfd346a52d92da7883.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'c/src/lib/libbsp/arm/armulator/startup')
-rw-r--r--c/src/lib/libbsp/arm/armulator/startup/bspstart.c10
-rw-r--r--c/src/lib/libbsp/arm/armulator/startup/libcfunc.c2
-rw-r--r--c/src/lib/libbsp/arm/armulator/startup/syscalls.c14
-rw-r--r--c/src/lib/libbsp/arm/armulator/startup/trap.S2
4 files changed, 14 insertions, 14 deletions
diff --git a/c/src/lib/libbsp/arm/armulator/startup/bspstart.c b/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
index 424a90c49a..8fc4230681 100644
--- a/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
+++ b/c/src/lib/libbsp/arm/armulator/startup/bspstart.c
@@ -15,11 +15,11 @@
*/
#include <string.h>
-
+
#include <bsp.h>
#include <rtems/libio.h>
#include <rtems/libcsupport.h>
-
+
/*
* The original table from the application and our copy of it with
* some changes.
@@ -36,7 +36,7 @@ char *rtems_progname;
/*
* Use the shared implementations of the following routines
*/
-
+
void bsp_postdriver_hook(void);
void bsp_libc_init( void *, uint32_t, int );
@@ -53,7 +53,7 @@ void bsp_libc_init( void *, uint32_t, int );
* not yet initialized.
*
*/
-
+
void bsp_pretasking_hook(void)
{
extern int HeapBase;
@@ -68,7 +68,7 @@ void bsp_pretasking_hook(void)
#endif
}
-
+
/*
* bsp_start
*
diff --git a/c/src/lib/libbsp/arm/armulator/startup/libcfunc.c b/c/src/lib/libbsp/arm/armulator/startup/libcfunc.c
index 1eb8f7034b..09714436dd 100644
--- a/c/src/lib/libbsp/arm/armulator/startup/libcfunc.c
+++ b/c/src/lib/libbsp/arm/armulator/startup/libcfunc.c
@@ -1,7 +1,7 @@
/* Support files for GNU libc. Files in the C namespace go here.
Files in the system namespace (ie those that start with an underscore)
go in syscalls.c.
-
+
Note: These functions are in a seperate file so that OS providers can
overrride the system call stubs (defined in syscalls.c) without having
to provide libc funcitons as well. */
diff --git a/c/src/lib/libbsp/arm/armulator/startup/syscalls.c b/c/src/lib/libbsp/arm/armulator/startup/syscalls.c
index 801e3d7aa1..9af21c352a 100644
--- a/c/src/lib/libbsp/arm/armulator/startup/syscalls.c
+++ b/c/src/lib/libbsp/arm/armulator/startup/syscalls.c
@@ -40,7 +40,7 @@ initialize_monitor_handles (void)
{
#ifdef ARM_RDI_MONITOR
int volatile block[3];
-
+
block[0] = (int) ":tt";
block[2] = 3; /* length of filename */
block[1] = 0; /* mode "r" */
@@ -80,11 +80,11 @@ _swiread (int file,
int fh = file;
#ifdef ARM_RDI_MONITOR
int block[3];
-
+
block[0] = fh;
block[1] = (int) ptr;
block[2] = len;
-
+
return do_AngelSWI (AngelSWI_Reason_Read, block);
#else
asm ("mov r0, %1; mov r1, %2;mov r2, %3; swi %a0"
@@ -104,11 +104,11 @@ _swiwrite (
int fh = file;
#ifdef ARM_RDI_MONITOR
int block[3];
-
+
block[0] = fh;
block[1] = (int) ptr;
block[2] = len;
-
+
return do_AngelSWI (AngelSWI_Reason_Write, block);
#else
asm ("mov r0, %1; mov r1, %2;mov r2, %3; swi %a0"
@@ -119,14 +119,14 @@ _swiwrite (
}
/*
- * Move me
+ * Move me
*/
void
bsp_cleanup (void )
{
/* FIXME: return code is thrown away */
-
+
#ifdef ARM_RDI_MONITOR
do_AngelSWI (AngelSWI_Reason_ReportException,
(void *) ADP_Stopped_ApplicationExit);
diff --git a/c/src/lib/libbsp/arm/armulator/startup/trap.S b/c/src/lib/libbsp/arm/armulator/startup/trap.S
index 328fabca5c..4021ea1d18 100644
--- a/c/src/lib/libbsp/arm/armulator/startup/trap.S
+++ b/c/src/lib/libbsp/arm/armulator/startup/trap.S
@@ -78,7 +78,7 @@ __rt_stkovf_split_big:
@ dummy space on the stack and passing in a "phantom" arg1 into
@ the function. This means that we do not need to worry about
@ preserving the stack under "sp" even on function return.
- @
+ @
@ Code should never poke values beneath sp. The sp register
@ should always be "dropped" first to cover the data. This
@ protects the data against any events that may try and use