Commit b14945ac authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by David S. Miller

net: atarilance: use %8ph for printing hex string

This is already using the %pM printf extension; might as well also use
%ph to make the code smaller.
Signed-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d709b2a1
...@@ -1012,13 +1012,9 @@ static int lance_rx( struct net_device *dev ) ...@@ -1012,13 +1012,9 @@ static int lance_rx( struct net_device *dev )
u_char *data = PKTBUF_ADDR(head); u_char *data = PKTBUF_ADDR(head);
printk(KERN_DEBUG "%s: RX pkt type 0x%04x from %pM to %pM " printk(KERN_DEBUG "%s: RX pkt type 0x%04x from %pM to %pM "
"data %02x %02x %02x %02x %02x %02x %02x %02x " "data %8ph len %d\n",
"len %d\n",
dev->name, ((u_short *)data)[6], dev->name, ((u_short *)data)[6],
&data[6], data, &data[6], data, &data[15], pkt_len);
data[15], data[16], data[17], data[18],
data[19], data[20], data[21], data[22],
pkt_len);
} }
skb_reserve( skb, 2 ); /* 16 byte align */ skb_reserve( skb, 2 ); /* 16 byte align */
......
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