The patch titled Subject: paride: fix the "verbose" module param has been removed from the -mm tree. Its filename was paride-fix-the-verbose-module-param.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 posix_acl-make-posix_acl_create-safer-and-cleaner.patch nilfs2-add-bmap-function-to-seek-a-valid-key-fix.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