• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * dspbridge/mpu_api/inc/devdefs.h
3  *
4  * DSP-BIOS Bridge driver support functions for TI OMAP processors.
5  *
6  * Copyright (C) 2007 Texas Instruments, Inc.
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published
10  * by the Free Software Foundation version 2.1 of the License.
11  *
12  * This program is distributed .as is. WITHOUT ANY WARRANTY of any kind,
13  * whether express or implied; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  */
17 
18 
19 /*
20  *  ======== devdefs.h ========
21  *  Purpose:
22  *      Definition of common include typedef between wmd.h and dev.h. Required
23  *      to break circular dependency between WMD and DEV include files.
24  *
25  *! Revision History:
26  *! ================
27  *! 12-Nov-1996 gp: Renamed from dev1.h.
28  *! 30-May-1996 gp: Broke out from dev.h
29  */
30 
31 #ifndef DEVDEFS_
32 #define DEVDEFS_
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 /* WCD Device Object */
39 	struct DEV_OBJECT;
40 	/*typedef struct DEV_OBJECT *DEV_HOBJECT;*/
41 
42 #ifdef __cplusplus
43 }
44 #endif
45 #endif				/* DEVDEFS_ */
46