From 2e619383246dcdf5f43165e844710ec426c5df1f Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 28 Sep 2000 20:22:40 +0000 Subject: 2000-09-28 Joel Sherrill * include/rtems/io.h (rtems_driver_address_table): Added "_entry" to all names. * src/io.c: Accounted for above. --- cpukit/sapi/include/rtems/io.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 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 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; /* -- cgit v1.2.3