reorganized things
[my-code/kernel.git] / hello / hello.c
diff --git a/hello/hello.c b/hello/hello.c
deleted file mode 100644 (file)
index cf6bd93..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* my first kernel driver :-) */
-
-#include <linux/module.h>
-#include <linux/kernel.h>
-#include <linux/sched.h>
-
-int init_module(void) {
-       printk(KERN_ALERT "hi hackbard, here is your kernel speaking! :)\n");
-       printk(KERN_ALERT "some info : %s has process id %i\n",current->comm,
-                                                               current->pid);
-       return 0;
-}
-
-void cleanup_module(void) {
-       printk(KERN_ALERT "bye hackbard ...\n");
-}
-