From 8076d839bf69e619f2e504122ec2ceb790a0b978 Mon Sep 17 00:00:00 2001 From: Julian T Date: Sat, 15 Feb 2020 20:28:59 +0100 Subject: Changed to a more consistent codestyle --- sem3/module.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sem3/module.c') diff --git a/sem3/module.c b/sem3/module.c index 3a25d25..a4f4def 100644 --- a/sem3/module.c +++ b/sem3/module.c @@ -2,11 +2,13 @@ #include #include -module_init(void) { +module_init(void) +{ printk(KERN_INFO "COOL_MODULE: Hej med dig\n"); return 0; } -module_exit(void) { +module_exit(void) +{ printk(KERN_INFO "COOL_MODULE: Nou moe\n"); } -- cgit v1.2.3