#include #include #include extern void dumb(void); static int __init hello_2_init(void) { // printk(KERN_INFO "Buffer: %s (%p)\n", chardev_buffer, chardev_buffer); dumb(); return 0; } static void __exit hello_2_exit(void) { } module_init(hello_2_init); module_exit(hello_2_exit); MODULE_AUTHOR("Guillermo Ramos"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Módulo tonto");