Chinaunix首页 | 论坛 | 博客
  • 博客访问: 631974
  • 博文数量: 1008
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-31 09:44
文章分类
文章存档

2012年(1008)

我的朋友

分类:

2012-08-01 11:05:20

原文地址:Hello Word驱动程序 作者:luozhiyong131

/*

 * Hello Word驱动程序

 * Lzy 2011-9-26

 */

 

#include   /* 模块加载函数和模块释放函数的宏定义*/

#include    /* 加载模块需要使用的大量符号和函数定义*/

 

static int __init hello_init(void)

{

    printk("Hello Word\n");

    return 0;

}

 

static void __exit hello_exit(void)

{

    printk("GoodBye Word\n");

    return ;

}

 

module_init(hello_init); /* 指定模块加载函数*/

module_exit(hello_exit); /* 指定模块卸载函数*/

MODULE_LICENSE("GPL");      /* 指定许可权为GPL*/

 

源代码: hello.rar   

 

阅读(131) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~