aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cdrom/cdrom.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/cdrom/cdrom.c')
-rw-r--r--drivers/cdrom/cdrom.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/cdrom/cdrom.c b/drivers/cdrom/cdrom.c
index 2118211aff99..1bbf7645a97c 100644
--- a/drivers/cdrom/cdrom.c
+++ b/drivers/cdrom/cdrom.c
@@ -285,17 +285,17 @@
285#include <asm/uaccess.h> 285#include <asm/uaccess.h>
286 286
287/* used to tell the module to turn on full debugging messages */ 287/* used to tell the module to turn on full debugging messages */
288static int debug; 288static bool debug;
289/* used to keep tray locked at all times */ 289/* used to keep tray locked at all times */
290static int keeplocked; 290static int keeplocked;
291/* default compatibility mode */ 291/* default compatibility mode */
292static int autoclose=1; 292static bool autoclose=1;
293static int autoeject; 293static bool autoeject;
294static int lockdoor = 1; 294static bool lockdoor = 1;
295/* will we ever get to use this... sigh. */ 295/* will we ever get to use this... sigh. */
296static int check_media_type; 296static bool check_media_type;
297/* automatically restart mrw format */ 297/* automatically restart mrw format */
298static int mrw_format_restart = 1; 298static bool mrw_format_restart = 1;
299module_param(debug, bool, 0); 299module_param(debug, bool, 0);
300module_param(autoclose, bool, 0); 300module_param(autoclose, bool, 0);
301module_param(autoeject, bool, 0); 301module_param(autoeject, bool, 0);