diff options
author | David S. Miller <davem@davemloft.net> | 2007-07-11 01:08:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-07-11 01:08:12 -0400 |
commit | 8c7b7faaa630fef7f68d8728cee1cce398cc9697 (patch) | |
tree | 844c5c5aad361b7c1e24f8d0b8f3195c4a4ad816 /drivers/net/sundance.c | |
parent | a7ab4b501f9b8a9dc4d5cee542db67b6ccd1088b (diff) |
[NET]: Kill eth_copy_and_sum().
It hasn't "summed" anything in over 7 years, and it's
just a straight mempcy ala skb_copy_to_linear_data()
so just get rid of it.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sundance.c')
-rw-r--r-- | drivers/net/sundance.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sundance.c b/drivers/net/sundance.c index e1f912d04043..c8ba534c17bf 100644 --- a/drivers/net/sundance.c +++ b/drivers/net/sundance.c | |||
@@ -1313,7 +1313,7 @@ static void rx_poll(unsigned long data) | |||
1313 | np->rx_buf_sz, | 1313 | np->rx_buf_sz, |
1314 | PCI_DMA_FROMDEVICE); | 1314 | PCI_DMA_FROMDEVICE); |
1315 | 1315 | ||
1316 | eth_copy_and_sum(skb, np->rx_skbuff[entry]->data, pkt_len, 0); | 1316 | skb_copy_to_linear_data(skb, np->rx_skbuff[entry]->data, pkt_len); |
1317 | pci_dma_sync_single_for_device(np->pci_dev, | 1317 | pci_dma_sync_single_for_device(np->pci_dev, |
1318 | desc->frag[0].addr, | 1318 | desc->frag[0].addr, |
1319 | np->rx_buf_sz, | 1319 | np->rx_buf_sz, |