diff options
-rw-r--r-- | drivers/block/paride/pg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/paride/pg.c b/drivers/block/paride/pg.c index 2ce3dfd7e6b9..876d0c3eaf58 100644 --- a/drivers/block/paride/pg.c +++ b/drivers/block/paride/pg.c | |||
@@ -137,7 +137,7 @@ | |||
137 | 137 | ||
138 | */ | 138 | */ |
139 | 139 | ||
140 | static bool verbose = 0; | 140 | static int verbose; |
141 | static int major = PG_MAJOR; | 141 | static int major = PG_MAJOR; |
142 | static char *name = PG_NAME; | 142 | static char *name = PG_NAME; |
143 | static int disable = 0; | 143 | static int disable = 0; |
@@ -168,7 +168,7 @@ enum {D_PRT, D_PRO, D_UNI, D_MOD, D_SLV, D_DLY}; | |||
168 | 168 | ||
169 | #include <asm/uaccess.h> | 169 | #include <asm/uaccess.h> |
170 | 170 | ||
171 | module_param(verbose, bool, 0644); | 171 | module_param(verbose, int, 0644); |
172 | module_param(major, int, 0); | 172 | module_param(major, int, 0); |
173 | module_param(name, charp, 0); | 173 | module_param(name, charp, 0); |
174 | module_param_array(drive0, int, NULL, 0); | 174 | module_param_array(drive0, int, NULL, 0); |