]> Pileus Git - ~andy/linux/commitdiff
enic: Clean up: remove enic_dev_stats_clear
authorRoopa Prabhu <roprabhu@cisco.com>
Tue, 10 Aug 2010 18:55:15 +0000 (18:55 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 Aug 2010 09:32:58 +0000 (02:32 -0700)
Remove function enic_dev_stats_clear and its reference in enic device
init code. Firmware clears device stats on device open. So, no need for
the driver to do it again.

Signed-off-by: Scott Feldman <scofeldm@cisco.com>
Signed-off-by: Roopa Prabhu <roprabhu@cisco.com>
Signed-off-by: Vasanthy Kolluri <vkolluri@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/enic/enic_main.c

index 6f6c5dc36197afdf5b0b3f7e1fcc10eb6b4316f5..711077a2e3451191ad98c9563cec376e06db15e0 100644 (file)
@@ -2154,17 +2154,6 @@ void enic_dev_deinit(struct enic *enic)
        enic_clear_intr_mode(enic);
 }
 
-static int enic_dev_stats_clear(struct enic *enic)
-{
-       int err;
-
-       spin_lock(&enic->devcmd_lock);
-       err = vnic_dev_stats_clear(enic->vdev);
-       spin_unlock(&enic->devcmd_lock);
-
-       return err;
-}
-
 int enic_dev_init(struct enic *enic)
 {
        struct device *dev = enic_get_dev(enic);
@@ -2207,10 +2196,6 @@ int enic_dev_init(struct enic *enic)
 
        enic_init_vnic_resources(enic);
 
-       /* Clear LIF stats
-        */
-       enic_dev_stats_clear(enic);
-
        err = enic_set_rq_alloc_buf(enic);
        if (err) {
                dev_err(dev, "Failed to set RQ buffer allocator, aborting\n");