summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 21:20:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-26 21:20:33 +0000
commit1693c131a19f6c23ae95e33161119e48239dc165 (patch)
tree84b6b5ef076a1e62d431b8c4e8b4a7e5609e433b /c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c
parent2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-1693c131a19f6c23ae95e33161119e48239dc165.tar.bz2
2007-11-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/bspstart.c: Eliminate the interrupt_vector_table field in the m68k CPU Table since it is never read.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c b/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c
index 1a30f0ff1e..c85410c15c 100644
--- a/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c
+++ b/c/src/lib/libbsp/m68k/mcf5206elite/startup/bspstart.c
@@ -59,21 +59,20 @@ void bsp_pretasking_hook(void); /* m68k version */
*/
void bsp_start( void )
{
- extern void *_WorkspaceBase;
+ extern void *_WorkspaceBase;
- /*
- * Need to "allocate" the memory for the RTEMS Workspace and
- * tell the RTEMS configuration where it is. This memory is
- * not malloc'ed. It is just "pulled from the air".
- */
+ /*
+ * Need to "allocate" the memory for the RTEMS Workspace and
+ * tell the RTEMS configuration where it is. This memory is
+ * not malloc'ed. It is just "pulled from the air".
+ */
- BSP_Configuration.work_space_start = (void *)&_WorkspaceBase;
+ BSP_Configuration.work_space_start = (void *)&_WorkspaceBase;
- /*
- * initialize the CPU table for this BSP
- */
- Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
- Cpu_table.postdriver_hook = bsp_postdriver_hook;
- Cpu_table.interrupt_stack_size = 4096;
- Cpu_table.interrupt_vector_table = (m68k_isr *)0; /* vectors at start of RAM */
+ /*
+ * initialize the CPU table for this BSP
+ */
+ Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
+ Cpu_table.postdriver_hook = bsp_postdriver_hook;
+ Cpu_table.interrupt_stack_size = 4096;
}