patch-2.4.18 linux/drivers/net/de4x5.c
Next file: linux/drivers/net/dl2k.c
Previous file: linux/drivers/net/cs89x0.c
Back to the patch index
Back to the overall index
- Lines: 18
- Date:
Mon Jan 7 23:28:58 2002
- Orig file:
linux.orig/drivers/net/de4x5.c
- Orig date:
Mon Feb 18 20:18:39 2002
diff -Naur -X /home/marcelo/lib/dontdiff linux.orig/drivers/net/de4x5.c linux/drivers/net/de4x5.c
@@ -3652,7 +3652,7 @@
tmp = virt_to_bus(p->data);
i = ((tmp + ALIGN) & ~ALIGN) - tmp;
skb_reserve(p, i);
- lp->rx_ring[index].buf = tmp + i;
+ lp->rx_ring[index].buf = cpu_to_le32(tmp + i);
ret = lp->rx_skb[index];
lp->rx_skb[index] = p;
@@ -5623,7 +5623,7 @@
if (!capable(CAP_NET_ADMIN)) return -EPERM;
omr = inl(DE4X5_OMR);
omr &= ~OMR_PR;
- outb(omr, DE4X5_OMR);
+ outl(omr, DE4X5_OMR);
dev->flags &= ~IFF_PROMISC;
break;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)