[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1387465612-3673-33-git-send-email-levex@linux.com>
Date: Thu, 19 Dec 2013 16:06:46 +0100
From: Levente Kurusa <levex@...ux.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: Levente Kurusa <levex@...ux.com>,
Bjorn Helgaas <bhelgaas@...gle.com>,
Andrew Murray <amurray@...edded-bits.co.uk>,
Myron Stowe <myron.stowe@...hat.com>, linux-pci@...r.kernel.org
Subject: [PATCH 32/38] pcie: add missing put_device call
This is required so that we give up the last reference to the device.
Removed the kfree() as put_device will result in release_pcie_device being
called and hence the container of the device will be kfree'd.
Signed-off-by: Levente Kurusa <levex@...ux.com>
---
drivers/pci/pcie/portdrv_core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/pcie/portdrv_core.c b/drivers/pci/pcie/portdrv_core.c
index 08d131f..80fb1f2 100644
--- a/drivers/pci/pcie/portdrv_core.c
+++ b/drivers/pci/pcie/portdrv_core.c
@@ -345,7 +345,7 @@ static int pcie_device_init(struct pci_dev *pdev, int service, int irq)
retval = device_register(device);
if (retval)
- kfree(pcie);
+ put_device(device);
else
get_device(device);
return retval;
--
1.8.3.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists