mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
net/ariadne: Improve debug prints
Remove casts and use proper printf()-style format specifiers instead. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Cc: David S. Miller <davem@davemloft.net> Cc: netdev@vger.kernel.org Acked-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
44883eb023
commit
0eb8694b18
@ -213,10 +213,10 @@ static int ariadne_rx(struct net_device *dev)
|
||||
(const void *)priv->rx_buff[entry],
|
||||
pkt_len);
|
||||
skb->protocol = eth_type_trans(skb, dev);
|
||||
netdev_dbg(dev, "RX pkt type 0x%04x from %pM to %pM data 0x%08x len %d\n",
|
||||
netdev_dbg(dev, "RX pkt type 0x%04x from %pM to %pM data %p len %u\n",
|
||||
((u_short *)skb->data)[6],
|
||||
skb->data + 6, skb->data,
|
||||
(int)skb->data, (int)skb->len);
|
||||
skb->data, skb->len);
|
||||
|
||||
netif_rx(skb);
|
||||
dev->stats.rx_packets++;
|
||||
@ -566,10 +566,10 @@ static netdev_tx_t ariadne_start_xmit(struct sk_buff *skb,
|
||||
|
||||
/* Fill in a Tx ring entry */
|
||||
|
||||
netdev_dbg(dev, "TX pkt type 0x%04x from %pM to %pM data 0x%08x len %d\n",
|
||||
netdev_dbg(dev, "TX pkt type 0x%04x from %pM to %pM data %p len %u\n",
|
||||
((u_short *)skb->data)[6],
|
||||
skb->data + 6, skb->data,
|
||||
(int)skb->data, (int)skb->len);
|
||||
skb->data, skb->len);
|
||||
|
||||
local_irq_save(flags);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user