29#ifndef _SYSTEM_DRIVER_H
30#define _SYSTEM_DRIVER_H
34#define IOCTL_SYSTEM_SOFTWARE_VERSION 0x00
35#define IOCTL_SYSTEM_RESET 0x01
37#define VERSION_SIZE 20
42 char version[VERSION_SIZE];
49#define SYSTEM_DRIVER_TABLE_ENTRY \
50 { system_initialize, system_open, system_close, \
51 system_read, system_write, system_control }
uint32_t rtems_device_major_number
This integer type represents the major number of devices.
Definition: io.h:103
uint32_t rtems_device_minor_number
This integer type represents the minor number of devices.
Definition: io.h:115
rtems_status_code
This enumeration provides status codes for directives of the Classic API.
Definition: status.h:85
Definition: system_device_driver.h:41