#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>

MODULE_LICENSE("GPL");

int hello_init(void)
{
   printk("<1>Hello World\n");
   return 0;
}

void hello_exit()
{
   printk("<1>Bye\n");
}

module_init(hello_init);
module_exit(hello_exit);
