]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: xilinx: emaclite: Remove xemaclite_remove_ndev()
authorTobias Klauser <tklauser@distanz.ch>
Thu, 5 Jan 2017 09:41:36 +0000 (10:41 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Jan 2017 16:29:22 +0000 (11:29 -0500)
xemaclite_remove_ndev() is a simple wrapper around free_netdev()
checking for NULL before the call. All possible paths calling
it are guaranteed to pass a non-NULL argument, so rather call
free_netdev() directly.

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/xilinx/xilinx_emaclite.c

index 93dc10b10c0901c8974c4990eb87a22d6411e690..97dcc0bd5a851f069d758e0b9d8e61263b096f99 100644 (file)
@@ -1028,20 +1028,6 @@ static int xemaclite_send(struct sk_buff *orig_skb, struct net_device *dev)
        return 0;
 }
 
-/**
- * xemaclite_remove_ndev - Free the network device
- * @ndev:      Pointer to the network device to be freed
- *
- * 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)
-{
-       if (ndev) {
-               free_netdev(ndev);
-       }
-}
-
 /**
  * get_bool - Get a parameter from the OF device
  * @ofdev:     Pointer to OF device structure
@@ -1172,7 +1158,7 @@ static int xemaclite_of_probe(struct platform_device *ofdev)
        return 0;
 
 error:
-       xemaclite_remove_ndev(ndev);
+       free_netdev(ndev);
        return rc;
 }
 
@@ -1204,7 +1190,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);
+       free_netdev(ndev);
 
        return 0;
 }