summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68302/startup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-11 15:49:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-11 15:49:10 +0000
commit040b74f02028cf0d055d77f0b0760d4a80409f11 (patch)
tree97fbef174db2b7c42847638b746dbf1ff96c7993 /c/src/lib/libbsp/m68k/gen68302/startup
parent2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-040b74f02028cf0d055d77f0b0760d4a80409f11.tar.bz2
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* README, clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies of the Configuration Table. Use the RTEMS provided accessor macros to obtain configuration fields.
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68302/startup')
-rw-r--r--c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c b/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c
index 543595fc5e..55dd760240 100644
--- a/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c
+++ b/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c
@@ -21,16 +21,6 @@
#include <rtems/libcsupport.h>
/*
- * The original table from the application and our copy of it with
- * some changes.
- */
-
-extern rtems_configuration_table Configuration;
-rtems_configuration_table BSP_Configuration;
-
-char *rtems_progname;
-
-/*
* Use the shared implementations of the following routines
*/
@@ -68,5 +58,5 @@ void bsp_start( void )
* not malloc'ed. It is just "pulled from the air".
*/
- BSP_Configuration.work_space_start = (void *) &_WorkspaceBase;
+ Configuration.work_space_start = (void *) &_WorkspaceBase;
}