Skip to content

Commit

Permalink
[PATCH] Fixup cciss error handling
Browse files Browse the repository at this point in the history
The previous cciss commit removed the err_out_disable_pdev label, but
there was still a user of that. Fix that up.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
  • Loading branch information
Jens Axboe committed Dec 13, 2006
1 parent c65fb61 commit 2fc2c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/cciss.c
Original file line number Diff line number Diff line change
Expand Up @@ -2837,7 +2837,7 @@ static int cciss_pci_init(ctlr_info_t *c, struct pci_dev *pdev)
if (err) {
printk(KERN_ERR "cciss: Cannot obtain PCI resources, "
"aborting\n");
goto err_out_disable_pdev;
return err;
}

subsystem_vendor_id = pdev->subsystem_vendor;
Expand Down

0 comments on commit 2fc2c60

Please sign in to comment.