diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2006-12-13 09:44:27 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2006-12-13 09:44:27 -0500 |
commit | 2fc2c60df3d2b3a557eb8d750779def9d51934b1 (patch) | |
tree | c01576800f24494986704aa1e69c7d661de9f679 /drivers/block/cciss.c | |
parent | c65fb61b3c92ad8f99f16c7a2c11247bfaf0a1da (diff) |
[PATCH] Fixup cciss error handling
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>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r-- | drivers/block/cciss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 335e218b6dcc..2ee4a44423df 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -2837,7 +2837,7 @@ static int cciss_pci_init(ctlr_info_t *c, struct pci_dev *pdev) | |||
2837 | if (err) { | 2837 | if (err) { |
2838 | printk(KERN_ERR "cciss: Cannot obtain PCI resources, " | 2838 | printk(KERN_ERR "cciss: Cannot obtain PCI resources, " |
2839 | "aborting\n"); | 2839 | "aborting\n"); |
2840 | goto err_out_disable_pdev; | 2840 | return err; |
2841 | } | 2841 | } |
2842 | 2842 | ||
2843 | subsystem_vendor_id = pdev->subsystem_vendor; | 2843 | subsystem_vendor_id = pdev->subsystem_vendor; |