⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skull_clean.c

📁 Linux Device Drivers 2nd 经典书籍的配套源码
💻 C
字号:
#ifndef __KERNEL__#  define __KERNEL__#endif#ifndef MODULE#  define MODULE#endif#include <linux/config.h>#define __NO_VERSION__#include <linux/module.h>#include <linux/version.h>#include <linux/ioport.h>#include "sysdep.h"void skull_release(unsigned int port, unsigned int range){    release_region(port,range);}void skull_cleanup(void){    /* should put real values here ... */    /* skull_release(0,0); */}module_exit(skull_cleanup);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -