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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * slave.c -- the slave module of a master/slave pair using kmod
  3.  *
  4.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  5.  * Copyright (C) 2001 O'Reilly & Associates
  6.  *
  7.  * The source code in this file can be freely used, adapted,
  8.  * and redistributed in source or binary form, so long as an
  9.  * acknowledgment appears in derived source files.  The citation
  10.  * should list that the code comes from the book "Linux Device
  11.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  12.  * by O'Reilly & Associates.   No warranty is attached;
  13.  * we cannot take responsibility for errors or fitness for use.
  14.  */
  15. #ifndef __KERNEL__
  16. #  define __KERNEL__
  17. #endif
  18. #ifndef MODULE
  19. #  define MODULE
  20. #endif
  21. #include <linux/module.h>
  22. #include "sysdep.h"
  23. int slave_init(void)
  24. {
  25. MOD_INC_USE_COUNT;
  26. MOD_DEC_USE_COUNT;  /* Make it look "used once" */
  27. return 0;
  28. }
  29. void slave_cleanup(void)
  30. {}
  31. module_init(slave_init);
  32. module_exit(slave_cleanup);