blob: 46ba9a43361d6a612b2eca8eb0efadd77f27fda5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
static void __exit hello_2_exit(void)
{
printk(KERN_INFO "Adiós, mundo! 2\n");
}
module_exit(hello_2_exit);
MODULE_AUTHOR("Guillermo Ramos");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Módulo tonto");
|