Commit 4336548a authored by Andrew Morton's avatar Andrew Morton Committed by Jens Axboe
Browse files

drivers/block/cciss.c:cciss_init_one(): use proper errnos



pci_driver.probe should return a meaningful errno, not -1.

Cc: Jens Axboe <axboe@kernel.dk>
Cc: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 3f7d758b
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -5004,7 +5004,7 @@ reinit_after_soft_reset:


	i = alloc_cciss_hba(pdev);
	i = alloc_cciss_hba(pdev);
	if (i < 0)
	if (i < 0)
		return -1;
		return -ENOMEM;


	h = hba[i];
	h = hba[i];
	h->pdev = pdev;
	h->pdev = pdev;
@@ -5205,7 +5205,7 @@ clean_no_release_regions:
	 */
	 */
	pci_set_drvdata(pdev, NULL);
	pci_set_drvdata(pdev, NULL);
	free_hba(h);
	free_hba(h);
	return -1;
	return -ENODEV;
}
}


static void cciss_shutdown(struct pci_dev *pdev)
static void cciss_shutdown(struct pci_dev *pdev)