#include<linux/init.h> #include<linux/module.h> static int hello_init(void) { printk("hello world\n"); return 0; } static void first_drv_exit(void) { printk("goodbye ...