1 /* 2 * nodedefs.h 3 * 4 * DSP-BIOS Bridge driver support functions for TI OMAP processors. 5 * 6 * Global NODE constants and types, shared by PROCESSOR, NODE, and DISP. 7 * 8 * Copyright (C) 2005-2006 Texas Instruments, Inc. 9 * 10 * This package is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License version 2 as 12 * published by the Free Software Foundation. 13 * 14 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 17 */ 18 19 #ifndef NODEDEFS_ 20 #define NODEDEFS_ 21 22 #define NODE_SUSPENDEDPRI -1 23 24 /* NODE Objects: */ 25 struct node_mgr; 26 struct node_object; 27 28 #endif /* NODEDEFS_ */ 29