RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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
23extern "C" {
24#endif
25
26#define SPURIOUS_DRIVER_TABLE_ENTRY \
27 { Spurious_Initialize, NULL, NULL, NULL, NULL, NULL }
28
29rtems_device_driver Spurious_Initialize(
30 rtems_device_major_number,
31 rtems_device_minor_number,
32 void *,
34 uint32_t *
35);
36
37#ifdef __cplusplus
38}
39#endif
40
41#endif
42/* end of include file */
Classic Input/Output Manager API.
rtems_status_code
Classic API Status.
Definition: status.h:43
Objects_Id rtems_id
Used to manage and manipulate RTEMS object identifiers.
Definition: types.h:83