[NET]: Kill eth_copy_and_sum().
[deliverable/linux.git] / drivers / net / saa9730.c
index ad94358ece8943da8e9327052657b99bc7a71301..451486b32f233e04de60207fb965b9c0e7873e4f 100644 (file)
@@ -690,9 +690,9 @@ static int lan_saa9730_rx(struct net_device *dev)
                                lp->stats.rx_packets++;
                                skb_reserve(skb, 2);    /* 16 byte align */
                                skb_put(skb, len);      /* make room */
-                               eth_copy_and_sum(skb,
+                               skb_copy_to_linear_data(skb,
                                                 (unsigned char *) pData,
-                                                len, 0);
+                                                len);
                                skb->protocol = eth_type_trans(skb, dev);
                                netif_rx(skb);
                                dev->last_rx = jiffies;
This page took 0.036693 seconds and 5 git commands to generate.