#include #include static int simple_hello(void) { printk(KERN_ERR "called %s\n", __func__); return 0; } static void simple_goodbye(void) { printk(KERN_ERR "called %s\n", __func__); } module_init(simple_hello); module_exit(simple_goodbye); MODULE_AUTHOR("John Ogness "); MODULE_DESCRIPTION("simple"); MODULE_LICENSE("GPL v2"); MODULE_VERSION("12345.54321");