#include #include #include MODULE_LICENSE("GPL"); MODULE_AUTHOR("Your Name"); MODULE_DESCRIPTION("A Simple Linux Kernel Module"); static int __init hello_init(void) { printk(KERN_INFO "Hello, Kernel!\n"); return 0; } static void __exit hello_exit(void) { printk(KERN_INFO "Goodbye, Kernel!\n"); } module_init(hello_init); module_exit(hello_exit);