#include #include #include static int __init hello_2_init(void) { printk(KERN_INFO "Hola, mundo! 2\n"); return 0; } static void __exit hello_2_exit(void) { printk(KERN_INFO "Adiós, mundo! 2\n"); } module_init(hello_2_init); module_exit(hello_2_exit); MODULE_AUTHOR("Guillermo Ramos"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Módulo tonto");