From: Samuel Iglesias Gonsálvez Date: Tue, 11 Sep 2012 11:35:05 +0000 (+0200) Subject: Staging: ipack/bridges/tpci200: increment the reference counter of the pci_dev X-Git-Tag: v3.7-rc1~173^2~339 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b442bf738454d5eeaf695e45051e9fa7242bb9a3;p=platform%2Fupstream%2Fkernel-adaptation-pc.git Staging: ipack/bridges/tpci200: increment the reference counter of the pci_dev As indicated in the documentation of pci_dev_get. Signed-off-by: Samuel Iglesias Gonsálvez Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ipack/bridges/tpci200.c b/drivers/staging/ipack/bridges/tpci200.c index 383571c..b928140 100644 --- a/drivers/staging/ipack/bridges/tpci200.c +++ b/drivers/staging/ipack/bridges/tpci200.c @@ -670,6 +670,8 @@ static int tpci200_pci_probe(struct pci_dev *pdev, goto out_err_info; } + pci_dev_get(pdev); + /* Obtain a mapping of the carrier's PCI configuration registers */ ret = pci_request_region(pdev, TPCI200_CFG_MEM_BAR, KBUILD_MODNAME " Configuration Memory"); @@ -741,6 +743,7 @@ out_err_install: out_err_ioremap: pci_release_region(pdev, TPCI200_CFG_MEM_BAR); out_err_pci_request: + pci_dev_put(pdev); kfree(tpci200->info); out_err_info: kfree(tpci200);