]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
be2net: get rid of be_get_stats()
authorEric Dumazet <eric.dumazet@gmail.com>
Tue, 24 Aug 2010 19:22:13 +0000 (12:22 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Aug 2010 19:22:13 +0000 (12:22 -0700)
drivers can avoid implementing ndo_get_stats method if using netdevice
stats structure.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/benet/be_main.c

index 74e146f470c60e9df5ff01806623a0aaaaa0ec82..b89bae029620eaf81d4c560b3231fb084dc7ac5f 100644 (file)
@@ -365,11 +365,6 @@ static void be_rx_eqd_update(struct be_adapter *adapter)
        rx_eq->cur_eqd = eqd;
 }
 
-static struct net_device_stats *be_get_stats(struct net_device *dev)
-{
-       return &dev->stats;
-}
-
 static u32 be_calc_rate(u64 bytes, unsigned long ticks)
 {
        u64 rate = bytes;
@@ -2399,7 +2394,6 @@ static struct net_device_ops be_netdev_ops = {
        .ndo_open               = be_open,
        .ndo_stop               = be_close,
        .ndo_start_xmit         = be_xmit,
-       .ndo_get_stats          = be_get_stats,
        .ndo_set_rx_mode        = be_set_multicast_list,
        .ndo_set_mac_address    = be_mac_addr_set,
        .ndo_change_mtu         = be_change_mtu,