]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
pch_gbe: Omit private ndo_get_stats function
authorTobias Klauser <tklauser@distanz.ch>
Tue, 14 Feb 2017 16:47:12 +0000 (17:47 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Feb 2017 20:03:57 +0000 (15:03 -0500)
pch_gbe_get_stats() just returns dev->stats so we can leave it out
altogether and let dev_get_stats() do the job.

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

index f9e4e8eca6657e548299774920cb82ecb73502ef..5ae9681a2da7394748b0a1bf383fbbe393b6ea3d 100644 (file)
@@ -2148,17 +2148,6 @@ static int pch_gbe_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
        return NETDEV_TX_OK;
 }
 
-/**
- * pch_gbe_get_stats - Get System Network Statistics
- * @netdev:  Network interface device structure
- * Returns:  The current stats
- */
-static struct net_device_stats *pch_gbe_get_stats(struct net_device *netdev)
-{
-       /* only return the current stats */
-       return &netdev->stats;
-}
-
 /**
  * pch_gbe_set_multi - Multicast and Promiscuous mode set
  * @netdev:   Network interface device structure
@@ -2420,7 +2409,6 @@ static const struct net_device_ops pch_gbe_netdev_ops = {
        .ndo_open = pch_gbe_open,
        .ndo_stop = pch_gbe_stop,
        .ndo_start_xmit = pch_gbe_xmit_frame,
-       .ndo_get_stats = pch_gbe_get_stats,
        .ndo_set_mac_address = pch_gbe_set_mac,
        .ndo_tx_timeout = pch_gbe_tx_timeout,
        .ndo_change_mtu = pch_gbe_change_mtu,