diff options
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, |