Subversion Repositories Kolibri OS

Rev

Rev 1430 | Rev 3031 | 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. #define EXPORT_SYMBOL(x)
  15.  
  16. #define MODULE_FIRMWARE(x)
  17.  
  18.  
  19. #define MODULE_AUTHOR(x)
  20. #define MODULE_DESCRIPTION(x)
  21. #define MODULE_LICENSE(x)
  22.  
  23. struct module {};
  24.  
  25. #endif /* _LINUX_MODULE_H */
  26.