summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-02-04 08:46:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-02-04 08:46:43 +0000
commit0b2c943b8c7eb0332df6ca9f0ca4334f9e6a8b78 (patch)
treed36fc8d8927668b8fda3ba13db853a20c5a2a6ad /c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c
parent2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-0b2c943b8c7eb0332df6ca9f0ca4334f9e6a8b78.tar.bz2
2005-02-04 Ralf Corsepius <ralf.corsepius@rtems.org>
* console/console.c, include/bsp.h, network/network.c, startup/bspstart.c: Remove obsolete fixed size types.
Diffstat (limited to 'c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c')
-rw-r--r--c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c b/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c
index aed04393f1..141e90ace7 100644
--- a/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c
+++ b/c/src/lib/libbsp/m68k/uC5282/startup/bspstart.c
@@ -66,7 +66,7 @@ char *rtems_progname;
* No burst transfers on non-cacheable accesses
* Default cache mode is *disabled* (cache only ACRx areas)
*/
-static unsigned32 cacr_mode = MCF5XXX_CACR_CENB |
+static uint32_t cacr_mode = MCF5XXX_CACR_CENB |
MCF5XXX_CACR_DBWE |
MCF5XXX_CACR_DCM;
/*
@@ -156,7 +156,7 @@ void _CPU_cache_invalidate_1_data_line(const void *addr)
* Use the shared implementations of the following routines
*/
void bsp_postdriver_hook(void);
-void bsp_libc_init( void *, unsigned32, int );
+void bsp_libc_init( void *, uint32_t, int );
void bsp_pretasking_hook(void); /* m68k version */
/*
@@ -246,10 +246,10 @@ void bsp_start( void )
MCF5282_CS2_CSCR = MCF5282_CS_CSCR_PS_16;
}
-unsigned32 bsp_get_CPU_clock_speed(void)
+uint32_t bsp_get_CPU_clock_speed(void)
{
extern char _CPUClockSpeed[];
- return( (unsigned32)_CPUClockSpeed);
+ return( (uint32_t)_CPUClockSpeed);
}
/*