lkml.org 
[lkml]   [2016]   [Dec]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[v1] mmc: host: dw_mmc-pci:- Unmap region obtained by pcim_iomap_regions
Date
Unmap and release PCI BARs, if dw_mci_pci_probe is not successful.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
---
drivers/mmc/host/dw_mmc-pci.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/mmc/host/dw_mmc-pci.c b/drivers/mmc/host/dw_mmc-pci.c
index ab82796..f10bad8 100644
--- a/drivers/mmc/host/dw_mmc-pci.c
+++ b/drivers/mmc/host/dw_mmc-pci.c
@@ -65,8 +65,10 @@ static int dw_mci_pci_probe(struct pci_dev *pdev,
pci_set_master(pdev);

ret = dw_mci_probe(host);
- if (ret)
+ if (ret) {
+ pcim_iounmap_regions(pdev, 1 << PCI_BAR_NO);
return ret;
+ }

pci_set_drvdata(pdev, host);

--
1.7.9.5
\
 
 \ /
  Last update: 2016-12-23 11:31    [W:0.057 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site