Subversion Repositories Kolibri OS

Rev

Rev 1970 | Rev 3243 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef _LINUX_MODULE_H
  2. #define _LINUX_MODULE_H
  3. /*
  4.  * Dynamic loading of modules into the kernel.
  5.  *
  6.  * Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
  7.  * Rewritten again by Rusty Russell, 2002
  8.  */
  9. #include <linux/list.h>
  10. #include <linux/compiler.h>
  11. #include <linux/kernel.h>
  12.  
  13.  
  14.  
  15. #define MODULE_FIRMWARE(x)
  16. #define MODULE_AUTHOR(x);
  17. #define MODULE_DESCRIPTION(x);
  18. #define MODULE_LICENSE(x);
  19.  
  20. #define MODULE_PARM_DESC(_parm, desc)
  21.  
  22. struct module {};
  23.  
  24. #endif /* _LINUX_MODULE_H */
  25.