]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
rtl818x: pci_iomap() should pair with pci_iounmap()
authorandrea merello <andrea.merello@gmail.com>
Tue, 18 Feb 2014 01:10:41 +0000 (02:10 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 28 Feb 2014 19:08:27 +0000 (14:08 -0500)
Currently the driver uses pci_iomap() but iounmap() is called in
the error path

Change to use pci_iounmap() instead.

Reported-by: Huqiu Liu <liuhq11@mails.tsinghua.edu.cn>
Signed-off-by: Andrea Merello <andrea.merello@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/rtl818x/rtl8180/dev.c

index 470a1e32aa4e03bb75ca37b68f546911e95f6fbf..bf59ff9889520c0fd3b4ba40bef36b1e54d18095 100644 (file)
@@ -1137,7 +1137,7 @@ static int rtl8180_probe(struct pci_dev *pdev,
        return 0;
 
  err_iounmap:
-       iounmap(priv->map);
+       pci_iounmap(pdev, priv->map);
 
  err_free_dev:
        ieee80211_free_hw(dev);