2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>

* include/bsp.h: Eliminate copies of the Configuration Table. Use the
	RTEMS provided accessor macros to obtain configuration fields.
This commit is contained in:
Joel Sherrill
2007-12-11 15:50:38 +00:00
parent 4130d8e2e2
commit 9cf283a602
4 changed files with 10 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h: Eliminate copies of the Configuration Table. Use the
RTEMS provided accessor macros to obtain configuration fields.
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com> 2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h: Move interrupt_stack_size field from CPU Table to * include/bsp.h: Move interrupt_stack_size field from CPU Table to

View File

@@ -36,10 +36,6 @@ extern "C" {
{ \ { \
} }
/* miscellaneous stuff assumed to exist */
extern rtems_configuration_table BSP_Configuration;
/* /*
* Device Driver Table Entries * Device Driver Table Entries
*/ */

View File

@@ -1,3 +1,8 @@
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h: Eliminate copies of the Configuration Table. Use the
RTEMS provided accessor macros to obtain configuration fields.
2007-12-10 Till Straumann <strauman@slac.stanford.edu> 2007-12-10 Till Straumann <strauman@slac.stanford.edu>
* Makefile.am: use shared exception/interrupt support * Makefile.am: use shared exception/interrupt support

View File

@@ -188,7 +188,6 @@ extern char *BSP_commandline_string;
#define BSP_Convert_decrementer( _value ) \ #define BSP_Convert_decrementer( _value ) \
((unsigned long long) ((((unsigned long long)BSP_time_base_divisor) * 1000000ULL) /((unsigned long long) BSP_bus_frequency)) * ((unsigned long long) (_value))) ((unsigned long long) ((((unsigned long long)BSP_time_base_divisor) * 1000000ULL) /((unsigned long long) BSP_bus_frequency)) * ((unsigned long long) (_value)))
extern rtems_configuration_table BSP_Configuration;
extern void BSP_panic(char *s); extern void BSP_panic(char *s);
extern void rtemsReboot(void); extern void rtemsReboot(void);
/* extern int printk(const char *, ...) __attribute__((format(printf, 1, 2))); */ /* extern int printk(const char *, ...) __attribute__((format(printf, 1, 2))); */