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

int init_module() 
{ 
  printk(KERN_INFO "Iniciando...\n"); 
  return 0; 
} 

