]> Git Repo - linux.git/commitdiff
scsi: ch: Do not initialise statics to 0
authorXin Gao <[email protected]>
Wed, 20 Jul 2022 19:52:29 +0000 (03:52 +0800)
committerMartin K. Petersen <[email protected]>
Wed, 27 Jul 2022 02:13:29 +0000 (22:13 -0400)
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Xin Gao <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
drivers/scsi/ch.c

index 9088548698646029647dc07884528ad54d0655c4..7ab29eaec6f38cd9764dbc2d8ce5fe1e5b979830 100644 (file)
@@ -63,7 +63,7 @@ static int verbose = 1;
 module_param(verbose, int, 0644);
 MODULE_PARM_DESC(verbose,"be verbose (default: on)");
 
-static int debug = 0;
+static int debug;
 module_param(debug, int, 0644);
 MODULE_PARM_DESC(debug,"enable/disable debug messages, also prints more "
                 "detailed sense codes on scsi errors (default: off)");
This page took 0.072879 seconds and 4 git commands to generate.