igb: make dev_spec a union and remove dynamic allocation
[deliverable/linux.git] / drivers / net / sunlance.c
index c67cf94b5bffd42cb5f7740f17a7cb018155d10e..281373281756e381d24125eb841f903eda0a8286 100644 (file)
@@ -555,7 +555,6 @@ static void lance_rx_dvma(struct net_device *dev)
                                         len);
                        skb->protocol = eth_type_trans(skb, dev);
                        netif_rx(skb);
-                       dev->last_rx = jiffies;
                        dev->stats.rx_packets++;
                }
 
@@ -726,7 +725,6 @@ static void lance_rx_pio(struct net_device *dev)
                        lance_piocopy_to_skb(skb, &(ib->rx_buf[entry][0]), len);
                        skb->protocol = eth_type_trans(skb, dev);
                        netif_rx(skb);
-                       dev->last_rx = jiffies;
                        dev->stats.rx_packets++;
                }
 
This page took 0.02504 seconds and 5 git commands to generate.