www.pudn.com > driverII_demo.rar > hello.c


#include 
#include 
#include 

MODULE_LICENSE("GPL");

static int __init hello_init()
{
	printk("<3>hello 2.6 kernel!\n");
	return 0;
}

static void __exit hello_exit()
{
	printk("<3>exit 2.6 kernel!\n");
}

module_init(hello_init);
module_exit(hello_exit);