RTEMS
|
This structure contains the device driver entries. More...
#include <io.h>
Public Attributes | |
rtems_device_driver_entry | initialization_entry |
This member is the device driver initialization entry. More... | |
rtems_device_driver_entry | open_entry |
This member is the device driver open entry. More... | |
rtems_device_driver_entry | close_entry |
This member is the device driver close entry. More... | |
rtems_device_driver_entry | read_entry |
This member is the device driver read entry. More... | |
rtems_device_driver_entry | write_entry |
This member is the device driver write entry. More... | |
rtems_device_driver_entry | control_entry |
This member is the device driver control entry. More... | |
This structure contains the device driver entries.
This structure is used to register a device driver via rtems_io_register_driver().
rtems_device_driver_entry rtems_driver_address_table::close_entry |
This member is the device driver close entry.
This entry is called by rtems_io_close().
rtems_device_driver_entry rtems_driver_address_table::control_entry |
This member is the device driver control entry.
This entry is called by rtems_io_control().
rtems_device_driver_entry rtems_driver_address_table::initialization_entry |
This member is the device driver initialization entry.
This entry is called by rtems_io_initialize().
rtems_device_driver_entry rtems_driver_address_table::open_entry |
This member is the device driver open entry.
This entry is called by rtems_io_open().
rtems_device_driver_entry rtems_driver_address_table::read_entry |
This member is the device driver read entry.
This entry is called by rtems_io_read().
rtems_device_driver_entry rtems_driver_address_table::write_entry |
This member is the device driver write entry.
This entry is called by rtems_io_write().