summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i960/cvme961/startup
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:20:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:20:42 +0000
commit090760c5f11c62ac7f206140ee94747c912dfb96 (patch)
tree762481bb2fc16382b99fd47da62b13eef741bda6 /c/src/lib/libbsp/i960/cvme961/startup
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-090760c5f11c62ac7f206140ee94747c912dfb96.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* clock/ckinit.c, include/bsp.h, shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c, startup/bspstart.c, timer/timer.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/lib/libbsp/i960/cvme961/startup')
-rw-r--r--c/src/lib/libbsp/i960/cvme961/startup/bspstart.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/i960/cvme961/startup/bspstart.c b/c/src/lib/libbsp/i960/cvme961/startup/bspstart.c
index d9c89e70db..9b8b9b6daa 100644
--- a/c/src/lib/libbsp/i960/cvme961/startup/bspstart.c
+++ b/c/src/lib/libbsp/i960/cvme961/startup/bspstart.c
@@ -40,7 +40,7 @@ char *rtems_progname;
*/
void bsp_postdriver_hook(void);
-void bsp_libc_init( void *, unsigned32, int );
+void bsp_libc_init( void *, uint32_t, int );
/*
* Function: bsp_pretasking_hook
@@ -59,9 +59,9 @@ void bsp_libc_init( void *, unsigned32, int );
void bsp_pretasking_hook(void)
{
extern int end;
- rtems_unsigned32 heap_start;
+ uint32_t heap_start;
- heap_start = (rtems_unsigned32) &end;
+ heap_start = (uint32_t) &end;
if (heap_start & (CPU_ALIGNMENT-1))
heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
@@ -82,7 +82,7 @@ void bsp_start( void )
{
/* set node number in SQSIO4 CTL REG */
- *((rtems_unsigned32 *)0xc00000b0) =
+ *((uint32_t*)0xc00000b0) =
(Configuration.User_multiprocessing_table) ?
Configuration.User_multiprocessing_table->node : 0;