aboutsummaryrefslogtreecommitdiff
path: root/sem1/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'sem1/module.c')
-rw-r--r--sem1/module.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/sem1/module.c b/sem1/module.c
deleted file mode 100644
index 3a25d25..0000000
--- a/sem1/module.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <linux/init.h>
-#include <linux/kernel.h>
-#include <linux/module.h>
-
-module_init(void) {
- printk(KERN_INFO "COOL_MODULE: Hej med dig\n");
- return 0;
-}
-
-module_exit(void) {
- printk(KERN_INFO "COOL_MODULE: Nou moe\n");
-}