From 773e13be02f1f42c8ac578031282c9455be023bb Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 14 May 2024 17:04:51 +0200 Subject: remove unused parameters from week 1 --- driver/main.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/driver/main.c b/driver/main.c index e7d7d96..226f158 100644 --- a/driver/main.c +++ b/driver/main.c @@ -6,14 +6,6 @@ #include "fopdrv.h" #include "config.h" -int one = 0; -module_param(one, int, 0400); -MODULE_PARM_DESC(one, "first parameter, only printed on init"); - -int not_named_two = 0; -module_param_named(two, not_named_two, int, 0400); -MODULE_PARM_DESC(not_named_two, "second parameter, only printed on init"); - struct cdev *cdev; struct device *dev; struct class *class; @@ -82,7 +74,6 @@ static int mod_init(void) { iounmap(gpio1); // printk("%s() -> 0 (%d:%d)\n", __PRETTY_FUNCTION__, MAJOR(node), MINOR(node)); - // printk("one = %d, two = %d\n", one, not_named_two); return 0; -- cgit v1.2.3