As indicated in the documentation of pci_dev_get. Signed-off-by: Samuel Iglesias Gonsálvez <sigles...@igalia.com> --- drivers/staging/ipack/bridges/tpci200.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/drivers/staging/ipack/bridges/tpci200.c b/drivers/staging/ipack/bridges/tpci200.c index 5150794..c1ce311 100644 --- a/drivers/staging/ipack/bridges/tpci200.c +++ b/drivers/staging/ipack/bridges/tpci200.c @@ -672,6 +672,8 @@ static int tpci200_pciprobe(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"); @@ -743,6 +745,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); -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/