net: emaclite: Not necessary to call devm_iounmap
authorMichal Simek <michal.simek@xilinx.com>
Thu, 12 Sep 2013 07:05:10 +0000 (09:05 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Sep 2013 18:41:01 +0000 (14:41 -0400)
devm_iounmap is called automatically.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/xilinx/xilinx_emaclite.c

index 4c619ea5189fc22308b8fe36851824e72eaad0ab..de3909878f426e147c58fe5c63c8e3e025d5621c 100644 (file)
@@ -1075,14 +1075,9 @@ static int xemaclite_send(struct sk_buff *orig_skb, struct net_device *dev)
  * This function un maps the IO region of the Emaclite device and frees the net
  * device.
  */
-static void xemaclite_remove_ndev(struct net_device *ndev,
-                                 struct platform_device *pdev)
+static void xemaclite_remove_ndev(struct net_device *ndev)
 {
        if (ndev) {
-               struct net_local *lp = netdev_priv(ndev);
-
-               if (lp->base_addr)
-                       devm_iounmap(&pdev->dev, lp->base_addr);
                free_netdev(ndev);
        }
 }
@@ -1214,7 +1209,7 @@ static int xemaclite_of_probe(struct platform_device *ofdev)
        return 0;
 
 error:
-       xemaclite_remove_ndev(ndev, ofdev);
+       xemaclite_remove_ndev(ndev);
        return rc;
 }
 
@@ -1248,7 +1243,7 @@ static int xemaclite_of_remove(struct platform_device *of_dev)
                of_node_put(lp->phy_node);
        lp->phy_node = NULL;
 
-       xemaclite_remove_ndev(ndev, of_dev);
+       xemaclite_remove_ndev(ndev);
 
        return 0;
 }