The patch titled Subject: paride: fix the "verbose" module param has been added to the -mm tree. Its filename is paride-fix-the-verbose-module-param.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/paride-fix-the-verbose-module-param.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/paride-fix-the-verbose-module-param.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Subject: paride: fix the "verbose" module param The verbose module parameter can be set to 2 for extremely verbose messages so the type should be int instead of bool. Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Cc: Tim Waugh <tim@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/paride/pg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/block/paride/pg.c~paride-fix-the-verbose-module-param drivers/block/paride/pg.c --- a/drivers/block/paride/pg.c~paride-fix-the-verbose-module-param +++ a/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, #include <asm/uaccess.h> -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); _ Patches currently in -mm which might be from dan.carpenter@xxxxxxxxxx are origin.patch paride-fix-the-verbose-module-param.patch hfsplus-add-missing-curly-braces-in-hfsplus_delete_cat.patch memstick-mspro_block-add-missing-curly-braces.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html