summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/score603e/startup
diff options
context:
space:
mode:
authorTill Straumann <strauman@slac.stanford.edu>2007-12-01 01:38:53 +0000
committerTill Straumann <strauman@slac.stanford.edu>2007-12-01 01:38:53 +0000
commitd8eb6c703efb5e245c67b0beb238338cfe802a6e (patch)
tree92265d153a199ba2d7f521ada953371316ea962a /c/src/lib/libbsp/powerpc/score603e/startup
parent2007-11-30 Till Straumann <strauman@slac.stanford.edu> (diff)
downloadrtems-d8eb6c703efb5e245c67b0beb238338cfe802a6e.tar.bz2
2007-11-30 Till Straumann <strauman@slac.stanford.edu>
* startup/bspstart: removed _Cpu_table.exceptions_in_RAM.
Diffstat (limited to 'c/src/lib/libbsp/powerpc/score603e/startup')
-rw-r--r--c/src/lib/libbsp/powerpc/score603e/startup/bspstart.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/powerpc/score603e/startup/bspstart.c b/c/src/lib/libbsp/powerpc/score603e/startup/bspstart.c
index 66fa562a88..fb6d4b330a 100644
--- a/c/src/lib/libbsp/powerpc/score603e/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/score603e/startup/bspstart.c
@@ -261,21 +261,17 @@ void bsp_start( void )
*A_Vector = Code;
}
- Cpu_table.exceptions_in_RAM = TRUE;
msr_value = 0x2030;
#elif (SCORE603E_USE_OPEN_FIRMWARE)
- Cpu_table.exceptions_in_RAM = TRUE;
msr_value = 0x2030;
#elif (SCORE603E_USE_NONE)
- Cpu_table.exceptions_in_RAM = TRUE;
msr_value = 0x2030;
_CPU_MSR_SET( msr_value );
bsp_set_trap_vectors();
#elif (SCORE603E_USE_DINK)
- Cpu_table.exceptions_in_RAM = TRUE;
msr_value = 0x2030;
_CPU_MSR_SET( msr_value );
@@ -312,7 +308,6 @@ void bsp_start( void )
* initialize the CPU table for this BSP
*/
- /* Cpu_table.exceptions_in_RAM was set above */
Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
Cpu_table.predriver_hook = bsp_predriver_hook; /* Init vectors */
Cpu_table.postdriver_hook = SCORE603e_bsp_postdriver_hook;