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

嵌入式Linux

开发平台:

C/C++

  1. #ifndef __KERNEL__
  2. #  define __KERNEL__
  3. #endif
  4. #ifndef MODULE
  5. #  define MODULE
  6. #endif
  7. #include <linux/ioport.h>
  8. /* don't include <linux/module.h> in more than one source file */
  9. static void skull_release(unsigned int port, unsigned int range)
  10. {
  11.     release_region(port,range);
  12. }
  13. void cleanup_module(void)
  14. {
  15.     /* should put real values here ... */
  16.     skull_release(0,0);
  17. }