summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/include/rtems/io.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 16:20:10 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-29 16:20:10 +0000
commit8bd411783a2dc8656715ca3dcc723b052281f9a8 (patch)
tree94b3b736451a1277e3a6c5413d471b1085cd3284 /cpukit/sapi/include/rtems/io.h
parent2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-8bd411783a2dc8656715ca3dcc723b052281f9a8.tar.bz2
2004-03-29 Ralf Corsepius <ralf_corsepius@rtems.org>
* 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.
Diffstat (limited to '')
-rw-r--r--cpukit/sapi/include/rtems/io.h16
1 files changed, 8 insertions, 8 deletions
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
);
/*