Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35344
b: refs/heads/master
c: fd8ae94
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Garzik committed Sep 21, 2006
1 parent 23caeef commit 57bbbf2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 783c99f42e221217761e9c319838d5533107f7cb
refs/heads/master: fd8ae94eea9bb4269d6dff1b47b9dc741bd70d0b
6 changes: 3 additions & 3 deletions trunk/drivers/net/lp486e.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,16 +442,16 @@ init_rx_bufs(struct net_device *dev, int num) {
if (rbd) {
rbd->pad = 0;
rbd->count = 0;
rbd->skb = dev_alloc_skb(RX_SKB_SIZE);
rbd->skb = dev_alloc_skb(RX_SKBSIZE);
if (!rbd->skb) {
printk("dev_alloc_skb failed");
}
rbd->next = rfd->rbd;
if (i) {
rfd->rbd->prev = rbd;
rbd->size = RX_SKB_SIZE;
rbd->size = RX_SKBSIZE;
} else {
rbd->size = (RX_SKB_SIZE | RBD_EL);
rbd->size = (RX_SKBSIZE | RBD_EL);
lp->rbd_tail = rbd;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/mv643xx_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ static int mv643xx_eth_receive_queue(struct net_device *dev, int budget)
struct pkt_info pkt_info;

while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) {
dma_unmap_single(NULL, pkt_info.buf_ptr, RX_SKB_SIZE,
dma_unmap_single(NULL, pkt_info.buf_ptr, ETH_RX_SKB_SIZE,
DMA_FROM_DEVICE);
mp->rx_desc_count--;
received_packets++;
Expand Down

0 comments on commit 57bbbf2

Please sign in to comment.