Skip to content

Commit

Permalink
via-velocity: Fix warnings on sparc64.
Browse files Browse the repository at this point in the history
As reported by Meelis Roos.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Francois Romieu authored and David S. Miller committed Oct 8, 2008
1 parent 8724184 commit 822f1a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/via-velocity.c
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ static void velocity_free_rd_ring(struct velocity_info *vptr)
continue;
pci_unmap_single(vptr->pdev, rd_info->skb_dma, vptr->rx.buf_sz,
PCI_DMA_FROMDEVICE);
rd_info->skb_dma = (dma_addr_t) NULL;
rd_info->skb_dma = 0;

dev_kfree_skb(rd_info->skb);
rd_info->skb = NULL;
Expand Down Expand Up @@ -1333,7 +1333,7 @@ static void velocity_free_td_ring_entry(struct velocity_info *vptr,
if (td_info->skb_dma[i]) {
pci_unmap_single(vptr->pdev, td_info->skb_dma[i],
td_info->skb->len, PCI_DMA_TODEVICE);
td_info->skb_dma[i] = (dma_addr_t) NULL;
td_info->skb_dma[i] = 0;
}
}
dev_kfree_skb(td_info->skb);
Expand Down

0 comments on commit 822f1a5

Please sign in to comment.