Subject: [merged] drivers-block-ccissc-return-0-from-driver-probe-function-on-success-not-1.patch removed from -mm tree To: scameron@xxxxxxxxxxxxxxxxxx,axboe@xxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Tue, 05 Nov 2013 11:29:03 -0800 The patch titled Subject: drivers/block/cciss.c: return 0 from driver probe function on success, not 1 has been removed from the -mm tree. Its filename was drivers-block-ccissc-return-0-from-driver-probe-function-on-success-not-1.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Stephen M. Cameron <scameron@xxxxxxxxxxxxxxxxxx> Subject: drivers/block/cciss.c: return 0 from driver probe function on success, not 1 A return value of 1 is interpreted as an error. Signed-off-by: Stephen M. Cameron <scameron@xxxxxxxxxxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/block/cciss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/block/cciss.c~drivers-block-ccissc-return-0-from-driver-probe-function-on-success-not-1 drivers/block/cciss.c --- a/drivers/block/cciss.c~drivers-block-ccissc-return-0-from-driver-probe-function-on-success-not-1 +++ a/drivers/block/cciss.c @@ -5183,7 +5183,7 @@ reinit_after_soft_reset: rebuild_lun_table(h, 1, 0); cciss_engage_scsi(h); h->busy_initializing = 0; - return 1; + return 0; clean4: cciss_free_cmd_pool(h); _ Patches currently in -mm which might be from scameron@xxxxxxxxxxxxxxxxxx are linux-next.patch drivers-pci-pci-driverc-warn-on-driver-probe-return-value-greater-than-zero.patch hpsa-return-0-from-driver-probe-function-on-success-not-1.patch drivers-block-ccissc-cciss_init_one-use-proper-errnos.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