#include #include MODULE_LICENSE("MINE"); MODULE_DESCRIPTION("hello_world_module"); MODULE_AUTHOR("SSL"); int init_module() { printk("Module hello_world_module initialized\n"); return 0; } void cleanup_module() { printk("Module hello_world_module is leaving the kernel\n"); }