From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Jiang Liu To: Yinghai Lu , Kenji Kaneshige , Bjorn Helgaas , Don Dutile , Greg KH Cc: Jiang Liu , Keping Chen , linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, Jiang Liu Subject: [PATCH v2 12/19] PCI: clean up all resources in error handling path in zt5550_hc_init_one() Date: Fri, 27 Apr 2012 23:16:53 +0800 Message-Id: <1335539820-11232-13-git-send-email-jiang.liu@huawei.com> In-Reply-To: <1335539820-11232-1-git-send-email-jiang.liu@huawei.com> References: <1335539820-11232-1-git-send-email-jiang.liu@huawei.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: From: Jiang Liu Clean up all resources in error handling path in function zt5550_hc_init_one(). Signed-off-by: Jiang Liu --- drivers/pci/hotplug/cpcihp_zt5550.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/pci/hotplug/cpcihp_zt5550.c b/drivers/pci/hotplug/cpcihp_zt5550.c index 6bf8d2a..8a6f968 100644 --- a/drivers/pci/hotplug/cpcihp_zt5550.c +++ b/drivers/pci/hotplug/cpcihp_zt5550.c @@ -257,11 +257,13 @@ static int zt5550_hc_init_one (struct pci_dev *pdev, const struct pci_device_id if(status != 0) { err("could not started cPCI hotplug system"); cpci_hp_unregister_bus(bus0); - goto init_register_error; + goto init_start_error; } dbg("started cpci hp system"); return 0; +init_start_error: + cpci_hp_unregister_bus(bus0); init_register_error: cpci_hp_unregister_controller(&zt5550_hpc); init_hc_error: -- 1.7.5.4