m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/harddoom.c
diff options
context:
space:
mode:
Diffstat (limited to 'harddoom.c')
-rw-r--r--harddoom.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/harddoom.c b/harddoom.c
new file mode 100644
index 0000000..fc4f5a0
--- /dev/null
+++ b/harddoom.c
@@ -0,0 +1,18 @@
+#include <linux/module.h>
+#include <linux/kernel.h>
+
+MODULE_LICENSE("GPL");
+
+int harddoom_init(void)
+{
+ printk(KERN_INFO "Initializing harddoom\n");
+ return 0;
+}
+
+void harddoom_cleanup(void)
+{
+ printk(KERN_INFO "Removing harddoom\n");
+}
+
+module_init(harddoom_init);
+module_exit(harddoom_cleanup);