Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2fc2c60df3d2b3a557eb8d750779def9d51934b1
Commit:     2fc2c60df3d2b3a557eb8d750779def9d51934b1
Parent:     c65fb61b3c92ad8f99f16c7a2c11247bfaf0a1da
Author:     Jens Axboe <[EMAIL PROTECTED]>
AuthorDate: Wed Dec 13 15:44:27 2006 +0100
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Wed Dec 13 15:44:27 2006 +0100

    [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 <[EMAIL PROTECTED]>
---
 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 335e218..2ee4a44 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)
        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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to