Subversion Repositories Kolibri OS

Rev

Rev 3243 | Rev 4103 | 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. #include <linux/export.h>
  13. #include <linux/moduleparam.h>
  14.  
  15.  
  16. #define MODULE_FIRMWARE(x)
  17. #define MODULE_AUTHOR(x);
  18. #define MODULE_DESCRIPTION(x);
  19. #define MODULE_LICENSE(x);
  20.  
  21. #define MODULE_PARM_DESC(_parm, desc)
  22.  
  23. struct module {};
  24.  
  25. #endif /* _LINUX_MODULE_H */
  26.