summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/leon3/startup/bspstart.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:20:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-12-04 22:20:55 +0000
commit7f3c6cee09ee44b627b11de34248aba485c789b3 (patch)
treec07336cf657989c76a25646872238208bbd4c581 /c/src/lib/libbsp/sparc/leon3/startup/bspstart.c
parent2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-7f3c6cee09ee44b627b11de34248aba485c789b3.tar.bz2
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* amba/amba.c, clock/ckinit.c, console/console.c, include/bsp.h, startup/bspstart.c, timer/timer.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/sparc/leon3/startup/bspstart.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/c/src/lib/libbsp/sparc/leon3/startup/bspstart.c b/c/src/lib/libbsp/sparc/leon3/startup/bspstart.c
index 47d17ef89c..a766acf225 100644
--- a/c/src/lib/libbsp/sparc/leon3/startup/bspstart.c
+++ b/c/src/lib/libbsp/sparc/leon3/startup/bspstart.c
@@ -34,8 +34,6 @@
extern rtems_configuration_table Configuration;
rtems_configuration_table BSP_Configuration;
-rtems_cpu_table Cpu_table;
-
/*
* Tells us where to put the workspace in case remote debugger is present.
*/
@@ -112,11 +110,6 @@ void bsp_start( void )
{
unsigned char *work_space_start;
- /*
- * This should be enough interrupt stack.
- */
- Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
-
work_space_start =
(unsigned char *)rdb_start - BSP_Configuration.work_space_size;