2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org>

* startup/bspstart.c: Eliminate rtems_unsigned32.
This commit is contained in:
Ralf Corsepius
2005-02-17 04:40:05 +00:00
parent 1899fe4778
commit 8a9eaeff9c
2 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org>
* startup/bspstart.c: Eliminate rtems_unsigned32.
2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org>
* startup/bspstart.c: include <rtems/powerpc/powerpc.h>. * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.

View File

@@ -166,12 +166,12 @@ void bsp_libc_init( void *, uint32_t, int );
void bsp_pretasking_hook(void) void bsp_pretasking_hook(void)
{ {
rtems_unsigned32 heap_start; uint32_t heap_start;
rtems_unsigned32 heap_size; uint32_t heap_size;
rtems_unsigned32 heap_sbrk_spared; uint32_t heap_sbrk_spared;
extern rtems_unsigned32 _bsp_sbrk_init(rtems_unsigned32, rtems_unsigned32*); extern uint32_t _bsp_sbrk_init(uint32_t, uint32_t*);
heap_start = ((rtems_unsigned32) __rtems_end) + heap_start = ((uint32_t) __rtems_end) +
INIT_STACK_SIZE + INTR_STACK_SIZE; INIT_STACK_SIZE + INTR_STACK_SIZE;
if (heap_start & (CPU_ALIGNMENT-1)) if (heap_start & (CPU_ALIGNMENT-1))
heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1); heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);