RTEMS  5.0.0
spurious.h
Go to the documentation of this file.
1 
7 /*
8  * COPYRIGHT (c) 1989-2011.
9  * On-Line Applications Research Corporation (OAR).
10  *
11  * The license and distribution terms for this file may be
12  * found in the file LICENSE in this distribution or at
13  * http://www.rtems.org/license/LICENSE.
14  */
15 
16 #ifndef _RTEMS_SPURIOUS_H
17 #define _RTEMS_SPURIOUS_H
18 
19 #include <rtems/rtems/types.h> /* rtems_id */
20 #include <rtems/io.h> /* rtems_device_driver */
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 #define SPURIOUS_DRIVER_TABLE_ENTRY \
27  { Spurious_Initialize, NULL, NULL, NULL, NULL, NULL }
28 
29 rtems_device_driver Spurious_Initialize(
30  rtems_device_major_number,
31  rtems_device_minor_number,
32  void *,
33  rtems_id,
34  uint32_t *
35 );
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif
42 /* end of include file */
rtems_status_code
Classic API Status.
Definition: status.h:43
Classic Input/Output Manager API.
Objects_Id rtems_id
Used to manage and manipulate RTEMS object identifiers.
Definition: types.h:83