summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c b/c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c
index 91012b8fdc..9bfd0ef472 100644
--- a/c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c
+++ b/c/src/lib/libbsp/mips/rbtx4938/startup/bspstart.c
@@ -87,18 +87,11 @@ void bsp_start( void )
extern int WorkspaceBase;
extern void mips_install_isr_entries(void);
- /* Configure Number of Register Caches */
-
- Cpu_table.pretasking_hook = bsp_pretasking_hook; /* init libc, etc. */
- Cpu_table.postdriver_hook = bsp_postdriver_hook;
Cpu_table.interrupt_stack_size = 4096;
BSP_Configuration.work_space_start =
(void *)((uint64_t)((&end) + LIBC_HEAP_SIZE + 0x100) & ~0x7);
- mips_install_isr_entries(); /* Install generic MIPS exception handler */
-
-/* init_exc_vecs(); */ /* Install BSP specific exception handler */
-
+ mips_install_isr_entries(); /* Install generic MIPS exception handler */
}