summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/include/rtems/io.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-28 20:22:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-09-28 20:22:40 +0000
commit2e619383246dcdf5f43165e844710ec426c5df1f (patch)
tree94395b4442526e3e63a3ae917b6c31d281ecd9ed /cpukit/sapi/include/rtems/io.h
parent2000-09-28 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-2e619383246dcdf5f43165e844710ec426c5df1f.tar.bz2
2000-09-28 Joel Sherrill <joel@OARcorp.com>
* include/rtems/io.h (rtems_driver_address_table): Added "_entry" to all names. * src/io.c: Accounted for above.
Diffstat (limited to '')
-rw-r--r--cpukit/sapi/include/rtems/io.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/sapi/include/rtems/io.h b/cpukit/sapi/include/rtems/io.h
index 55a9aac7b4..4d8b3c027c 100644
--- a/cpukit/sapi/include/rtems/io.h
+++ b/cpukit/sapi/include/rtems/io.h
@@ -57,12 +57,12 @@ typedef rtems_device_driver ( *rtems_device_driver_entry )(
);
typedef struct {
- rtems_device_driver_entry initialization; /* initialization procedure */
- rtems_device_driver_entry open; /* open request procedure */
- rtems_device_driver_entry close; /* close request procedure */
- rtems_device_driver_entry read; /* read request procedure */
- rtems_device_driver_entry write; /* write request procedure */
- rtems_device_driver_entry control; /* special functions procedure */
+ rtems_device_driver_entry initialization_entry; /* initialization procedure */
+ rtems_device_driver_entry open_entry; /* open request procedure */
+ rtems_device_driver_entry close_entry; /* close request procedure */
+ rtems_device_driver_entry read_entry; /* read request procedure */
+ rtems_device_driver_entry write_entry; /* write request procedure */
+ rtems_device_driver_entry control_entry; /* special functions procedure */
} rtems_driver_address_table;
/*