some change in the kernel module main file template

This commit is contained in:
lxsameer 2011-02-23 11:05:54 +03:30
parent 9dd77f8911
commit 4d4f8879e3
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,11 @@
*/
#include <linux/init.h>
#include <linux/module.h>
MODULE_LICENSE("Dual BSD/GPL");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("::author:: <::email::>"");
MODULE_DESCRIPTION("::desc::");
static int module_init(void)
{
printk(KERN_ALERT "Hello, world\n");