From 8bd411783a2dc8656715ca3dcc723b052281f9a8 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 29 Mar 2004 16:20:10 +0000 Subject: 2004-03-29 Ralf Corsepius * sapi/include/confdefs.h, sapi/include/rtems/config.h, sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h, sapi/include/rtems/init.h, sapi/include/rtems/io.h, sapi/src/exinit.c, sapi/src/extension.c, sapi/src/fatal.c, sapi/src/io.c: Convert to using c99 fixed size types. --- cpukit/sapi/include/rtems/io.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'cpukit/sapi/include/rtems/io.h') diff --git a/cpukit/sapi/include/rtems/io.h b/cpukit/sapi/include/rtems/io.h index 83105ca9eb..806a81d57e 100644 --- a/cpukit/sapi/include/rtems/io.h +++ b/cpukit/sapi/include/rtems/io.h @@ -45,8 +45,8 @@ extern "C" { * defines the entry points for that device driver. */ -typedef unsigned32 rtems_device_major_number; -typedef unsigned32 rtems_device_minor_number; +typedef uint32_t rtems_device_major_number; +typedef uint32_t rtems_device_minor_number; typedef rtems_status_code rtems_device_driver; @@ -71,7 +71,7 @@ typedef struct { typedef struct { char *device_name; - unsigned32 device_name_length; + uint32_t device_name_length; rtems_device_major_number major; rtems_device_minor_number minor; } rtems_driver_name_t; @@ -85,9 +85,9 @@ typedef struct { * Address Table and Device Name Table. */ -SAPI_EXTERN unsigned32 _IO_Number_of_drivers; +SAPI_EXTERN uint32_t _IO_Number_of_drivers; SAPI_EXTERN rtems_driver_address_table *_IO_Driver_address_table; -SAPI_EXTERN unsigned32 _IO_Number_of_devices; +SAPI_EXTERN uint32_t _IO_Number_of_devices; SAPI_EXTERN rtems_driver_name_t *_IO_Driver_name_table; /* @@ -100,9 +100,9 @@ SAPI_EXTERN rtems_driver_name_t *_IO_Driver_name_table; void _IO_Manager_initialization( rtems_driver_address_table *driver_table, - unsigned32 drivers_in_table, - unsigned32 number_of_drivers, - unsigned32 number_of_devices + uint32_t drivers_in_table, + uint32_t number_of_drivers, + uint32_t number_of_devices ); /* -- cgit v1.2.3