RTEMS 6.1-rc6
Loading...
Searching...
No Matches
Data Fields
rtems_driver_address_table Struct Reference

This structure contains the device driver entries. More...

#include <io.h>

Data Fields

rtems_device_driver_entry initialization_entry
 This member is the device driver initialization entry.
 
rtems_device_driver_entry open_entry
 This member is the device driver open entry.
 
rtems_device_driver_entry close_entry
 This member is the device driver close entry.
 
rtems_device_driver_entry read_entry
 This member is the device driver read entry.
 
rtems_device_driver_entry write_entry
 This member is the device driver write entry.
 
rtems_device_driver_entry control_entry
 This member is the device driver control entry.
 

Detailed Description

This structure contains the device driver entries.

This structure is used to register a device driver via rtems_io_register_driver().

Field Documentation

◆ close_entry

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().

◆ control_entry

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().

◆ initialization_entry

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().

◆ open_entry

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().

◆ read_entry

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().

◆ write_entry

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().


The documentation for this struct was generated from the following file: