aboutsummaryrefslogtreecommitdiff
path: root/1/main.c
diff options
context:
space:
mode:
Diffstat (limited to '1/main.c')
-rw-r--r--1/main.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/1/main.c b/1/main.c
index 819ba32..7299f36 100644
--- a/1/main.c
+++ b/1/main.c
@@ -3,15 +3,15 @@
MODULE_LICENSE("MIT");
-static int hello_init(void) {
+static int mod_init(void) {
printk(KERN_ALERT "Hello, world\n");
return 0;
}
-static void hello_exit(void) {
+static void mod_exit(void) {
printk(KERN_ALERT "Goodbye, world\n");
}
-module_init(hello_init);
-module_exit(hello_exit);
+module_init(mod_init);
+module_exit(mod_exit);