Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]
  1 #include <linux/config.h>
  2 #include <linux/module.h>
  3 #include <linux/version.h>
  4 
  5 #include <linux/ioport.h>
  6 
  7 void skull_release(unsigned int port, unsigned int range)
  8 {
  9     release_region(port,range);
 10 }
 11 
 12 void skull_cleanup(void)
 13 {
 14     /* should put real values here ... */
 15     /* skull_release(0,0); */
 16 }
 17 
 18 module_exit(skull_cleanup);
 19 
 20 
 21 
 22 
 23 
  This page was automatically generated by the LXR engine.