分类: 嵌入式
2011-09-26 12:01:49
/*
* 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