dect
/
linux-2.6
Archived
13
0
Fork 0

[netdrvr] lp486e: fix typo

inside #if 0'd code, but it bugged me.

Really, we should probably just delete the driver.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
Jeff Garzik 2006-09-21 00:06:21 -04:00
parent e478bec0ba
commit 8ce90907ea
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}