Commit 3ce6eb89 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] tulip warning fix

From: William Lee Irwin III <wli@holomorphy.com>

Silence a printk warning.
parent 2de9a741
......@@ -194,10 +194,10 @@ static int tulip_rx(struct net_device *dev)
if (tp->rx_buffers[entry].mapping !=
le32_to_cpu(tp->rx_ring[entry].buffer1)) {
printk(KERN_ERR "%s: Internal fault: The skbuff addresses "
"do not match in tulip_rx: %08x vs. %08x %p / %p.\n",
"do not match in tulip_rx: %08x vs. %Lx %p / %p.\n",
dev->name,
le32_to_cpu(tp->rx_ring[entry].buffer1),
tp->rx_buffers[entry].mapping,
(u64)tp->rx_buffers[entry].mapping,
skb->head, temp);
}
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment