]> Git Repo - linux.git/commitdiff
drivers/block/cciss.c:cciss_init_one(): use proper errnos
authorAndrew Morton <[email protected]>
Tue, 21 Jan 2014 22:39:23 +0000 (14:39 -0800)
committerJens Axboe <[email protected]>
Wed, 22 Jan 2014 04:16:56 +0000 (20:16 -0800)
pci_driver.probe should return a meaningful errno, not -1.

Cc: Jens Axboe <[email protected]>
Cc: Stephen M. Cameron <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
drivers/block/cciss.c

index b35fc4f5237c3b44c7c51aaa0517e58a42a2ab81..036e8ab86c718057ae01c9f6bf3ba6c403a6b942 100644 (file)
@@ -5004,7 +5004,7 @@ reinit_after_soft_reset:
 
        i = alloc_cciss_hba(pdev);
        if (i < 0)
-               return -1;
+               return -ENOMEM;
 
        h = hba[i];
        h->pdev = pdev;
@@ -5205,7 +5205,7 @@ clean_no_release_regions:
         */
        pci_set_drvdata(pdev, NULL);
        free_hba(h);
-       return -1;
+       return -ENODEV;
 }
 
 static void cciss_shutdown(struct pci_dev *pdev)
This page took 0.057311 seconds and 4 git commands to generate.