]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/block/cciss.c: return 0 from driver probe function on success, not 1
authorStephen M. Cameron <scameron@beardog.cce.hp.com>
Tue, 5 Nov 2013 05:55:19 +0000 (16:55 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 5 Nov 2013 05:55:19 +0000 (16:55 +1100)
A return value of 1 is interpreted as an error.

Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/block/cciss.c

index edfa2515bc8613f952c448194bfcebf7835d75c1..0c004ac05811de58b3a0cf49e7a3558010de7187 100644 (file)
@@ -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);