GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / tidspbridge / pmgr / msgobj.h
blob14ca633c56cb852dd04a988cefe3258dbb43466c
1 /*
2 * msgobj.h
4 * DSP-BIOS Bridge driver support functions for TI OMAP processors.
6 * Structure subcomponents of channel class library msg_ctrl objects which
7 * are exposed to DSP API from Bridge driver.
9 * Copyright (C) 2005-2006 Texas Instruments, Inc.
11 * This package is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 #ifndef MSGOBJ_
21 #define MSGOBJ_
23 #include <dspbridge/dspdefs.h>
25 #include <dspbridge/msgdefs.h>
28 * This struct is the first field in a msg_mgr struct. Other, implementation
29 * specific fields follow this structure in memory.
31 struct msg_mgr_ {
32 /* The first field must match that in _msg_sm.h */
34 /* Function interface to Bridge driver. */
35 struct bridge_drv_interface *intf_fxns;
38 #endif /* MSGOBJ_ */