aboutsummaryrefslogtreecommitdiff
path: root/driver/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver/main.c')
-rw-r--r--driver/main.c9
1 files changed, 0 insertions, 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;