Chinaunix首页 | 论坛 | 博客
  • 博客访问: 721754
  • 博文数量: 105
  • 博客积分: 3532
  • 博客等级: 中校
  • 技术积分: 1328
  • 用 户 组: 普通用户
  • 注册时间: 2010-04-20 18:57
文章分类

全部博文(105)

文章存档

2015年(1)

2014年(1)

2013年(7)

2012年(14)

2011年(21)

2010年(61)

分类: 嵌入式

2010-08-21 07:02:25

第一个驱动,其实只是在装置和卸载的时候打印两句话而已,算是启程吧

#include <linux/init.h>
#include <linux/module.h>

char *words="mry";

static int hello_init(void)
{
    printk(KERN_ALERT "Hello,%s!\n",words);
    return 0;
}

static void hello_exit(void)
{
    printk(KERN_ALERT "Goodbye,%s!\n",words);
}

MODULE_LICENSE("Dual BSD/GPL");
module_init(hello_init);
module_exit(hello_exit);


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