~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/include/asm-mips/inventory.h

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2  * $Id:$
  3  */
  4 #ifndef __ASM_MIPS_INVENTORY_H
  5 #define __ASM_MIPS_INVENTORY_H
  6 
  7 #include <linux/config.h>
  8 
  9 #ifdef CONFIG_BINFMT_IRIX
 10 typedef struct inventory_s {
 11         struct inventory_s *inv_next;
 12         int    inv_class;
 13         int    inv_type;
 14         int    inv_controller;
 15         int    inv_unit;
 16         int    inv_state;
 17 } inventory_t;
 18 
 19 extern int inventory_items;
 20 void add_to_inventory (int class, int type, int controller, int unit, int state);
 21 int dump_inventory_to_user (void *userbuf, int size);
 22 void init_inventory (void);
 23 
 24 #else
 25 #define add_to_inventory(c,t,o,u,s)
 26 #define init_inventory()
 27 #endif
 28 #endif /* defined(CONFIG_BINFMT_IRIX) */
 29 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.