From 99f9b868c7d25b709d08fb58c413db459336070b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 4 Dec 2007 22:22:58 +0000 Subject: 2007-12-04 Joel Sherrill * bootcard.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. --- c/src/lib/libbsp/shared/bootcard.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'c/src/lib/libbsp/shared/bootcard.c') diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c index 5685cbaffd..23086106dd 100644 --- a/c/src/lib/libbsp/shared/bootcard.c +++ b/c/src/lib/libbsp/shared/bootcard.c @@ -38,8 +38,6 @@ extern void bsp_cleanup( void ); extern rtems_configuration_table Configuration; extern rtems_configuration_table BSP_Configuration; -extern rtems_cpu_table Cpu_table; - rtems_api_configuration_table BSP_RTEMS_Configuration; #ifdef RTEMS_POSIX_API @@ -74,14 +72,6 @@ int boot_card(int argc, char **argv, char **envp) if ( envp ) envp_p = envp; - /* - * Set default values for the CPU Table fields all ports must have. - * These values can be overridden in bsp_start() but they are - * right most of the time. - */ - - Cpu_table.interrupt_stack_size = RTEMS_MINIMUM_STACK_SIZE; - /* * Copy the configuration table so we and the BSP wants to change it. */ @@ -106,8 +96,7 @@ int boot_card(int argc, char **argv, char **envp) * Initialize RTEMS but do NOT start multitasking. */ - bsp_isr_level = - rtems_initialize_executive_early( &BSP_Configuration, &Cpu_table ); + bsp_isr_level = rtems_initialize_executive_early( &BSP_Configuration ); /* * Call c_rtems_main() and eventually let the first task or the real -- cgit v1.2.3