From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dan Carpenter Date: Fri, 16 Nov 2012 06:26:31 +0000 Subject: [patch] paride: enable extra verbose debugging Message-Id: <20121116062631.GA11771@elgon.mountain> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Tim Waugh , Rusty Russell Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org This debug settings here are: 0 - Off 1 - Some 2 - Lots The module_param() was incorrectly set to bool and later the variable was updated to be bool to match. Really they should both be int. Signed-off-by: Dan Carpenter diff --git a/drivers/block/paride/pg.c b/drivers/block/paride/pg.c index 4a27b1d..ab99ac9 100644 --- a/drivers/block/paride/pg.c +++ b/drivers/block/paride/pg.c @@ -137,7 +137,7 @@ */ -static bool verbose = 0; +static int verbose; static int major = PG_MAJOR; static char *name = PG_NAME; static int disable = 0; @@ -168,7 +168,7 @@ enum {D_PRT, D_PRO, D_UNI, D_MOD, D_SLV, D_DLY}; #include -module_param(verbose, bool, 0644); +module_param(verbose, int, 0644); module_param(major, int, 0); module_param(name, charp, 0); module_param_array(drive0, int, NULL, 0);