From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f46.google.com ([209.85.160.46]:52165 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753311Ab2DPQdd (ORCPT ); Mon, 16 Apr 2012 12:33:33 -0400 Received: by mail-pb0-f46.google.com with SMTP id un15so6539626pbc.19 for ; Mon, 16 Apr 2012 09:33:33 -0700 (PDT) From: Jiang Liu To: Yinghai Lu , Kenji Kaneshige , Bjorn Helgaas , Scott Murray Cc: Jiang Liu , Jiang Liu , Keping Chen , linux-pci@vger.kernel.org Subject: [PATCH RFC 12/17] PCI: clean up all resources in error handling path in zt5550_hc_init_one() Date: Tue, 17 Apr 2012 00:29:06 +0800 Message-Id: <1334593751-5916-13-git-send-email-jiang.liu@huawei.com> In-Reply-To: <1334593751-5916-1-git-send-email-jiang.liu@huawei.com> References: <1334593751-5916-1-git-send-email-jiang.liu@huawei.com> Sender: linux-pci-owner@vger.kernel.org List-ID: 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