slave.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * slave.c -- the slave module of a master/slave pair using kerneld
  3.  *
  4.  * Tested with 2.0 on the x86, Sparc
  5.  * Tested with 2.1.43 on the x86
  6.  */
  7. #ifndef __KERNEL__
  8. #  define __KERNEL__
  9. #endif
  10. #ifndef MODULE
  11. #  define MODULE
  12. #endif
  13. #include <linux/module.h>
  14. int init_module(void)
  15. {return 0;}
  16. void cleanup_module(void)
  17. {}