From dac42086c9fcf9bd9ac71cb3fed02990959ab8fe Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 31 Mar 2004 03:47:07 +0000 Subject: 2004-03-31 Ralf Corsepius * PCI_bus/PCI.c, PCI_bus/PCI.h, PCI_bus/flash.c, PCI_bus/universe.c, clock/clock.c, console/85c30.c, console/console.c, console/consolebsp.h, include/bsp.h, include/gen2.h, startup/FPGA.c, startup/Hwr_init.c, startup/bspstart.c, startup/genpvec.c, startup/spurious.c, startup/vmeintr.c, timer/timer.c, tod/tod.c: Convert to using c99 fixed size types. --- .../libbsp/powerpc/score603e/startup/Hwr_init.c | 42 +++++++++++----------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'c/src/lib/libbsp/powerpc/score603e/startup/Hwr_init.c') diff --git a/c/src/lib/libbsp/powerpc/score603e/startup/Hwr_init.c b/c/src/lib/libbsp/powerpc/score603e/startup/Hwr_init.c index 938aeeddc5..bc83599cc1 100644 --- a/c/src/lib/libbsp/powerpc/score603e/startup/Hwr_init.c +++ b/c/src/lib/libbsp/powerpc/score603e/startup/Hwr_init.c @@ -52,24 +52,24 @@ typedef struct { - rtems_unsigned32 counter_1_100; - rtems_unsigned32 counter_hours; - rtems_unsigned32 counter_min; - rtems_unsigned32 counter_sec; - rtems_unsigned32 counter_month; - rtems_unsigned32 counter_date; - rtems_unsigned32 counter_year; - rtems_unsigned32 counter_day_of_week; - - rtems_unsigned32 RAM_1_100; - rtems_unsigned32 RAM_hours; - rtems_unsigned32 RAM_month; - rtems_unsigned32 RAM_date; - rtems_unsigned32 RAM_year; - rtems_unsigned32 RAM_day_of_week; - - rtems_unsigned32 interupt_status_mask; - rtems_unsigned32 command_register; + uint32_t counter_1_100; + uint32_t counter_hours; + uint32_t counter_min; + uint32_t counter_sec; + uint32_t counter_month; + uint32_t counter_date; + uint32_t counter_year; + uint32_t counter_day_of_week; + + uint32_t RAM_1_100; + uint32_t RAM_hours; + uint32_t RAM_month; + uint32_t RAM_date; + uint32_t RAM_year; + uint32_t RAM_day_of_week; + + uint32_t interupt_status_mask; + uint32_t command_register; }Harris_RTC; void init_RTC() @@ -84,7 +84,7 @@ void init_RTC() void init_PCI() { #if (SCORE603E_USE_SDS) | (SCORE603E_USE_OPEN_FIRMWARE) | (SCORE603E_USE_NONE) - rtems_unsigned32 value; + uint32_t value; /* * NOTE: Accessing any memory location not mapped by the BAT @@ -174,7 +174,7 @@ void init_PCI() void instruction_cache_enable () { - rtems_unsigned32 value; + uint32_t value; /* * Enable the instruction cache @@ -189,7 +189,7 @@ void instruction_cache_enable () void data_cache_enable () { - rtems_unsigned32 value; + uint32_t value; /* * enable data cache -- cgit v1.2.3