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.
This commit is contained in:
Joel Sherrill
2007-12-04 22:20:55 +00:00
parent 2804a3e71c
commit 7f3c6cee09
7 changed files with 60 additions and 40 deletions

View File

@@ -22,12 +22,13 @@
#include <bsp.h>
extern rtems_configuration_table Configuration;
#define LEON3_TIMER_INDEX \
(Configuration.User_multiprocessing_table ? \
(Configuration.User_multiprocessing_table)->maximum_nodes + \
(Configuration.User_multiprocessing_table)->node - 1 : 1)
#if defined(RTEMS_MULTIPROCESSING)
#define LEON3_TIMER_INDEX \
(rtems_configuration_get_user_multiprocessing_table() ? : \
(rtems_configuration_get_user_multiprocessing_table()->node) - 1 : 1)
#else
#define LEON3_TIMER_INDEX 0
#endif
rtems_boolean Timer_driver_Find_average_overhead;