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: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Rasmus Villemoes 2016-11-30 23:02:54 +01:00 коммит произвёл David S. Miller
Родитель d709b2a186
Коммит b14945ac3e
1 изменённых файлов: 2 добавлений и 6 удалений

Просмотреть файл

@ -1012,13 +1012,9 @@ static int lance_rx( struct net_device *dev )
u_char *data = PKTBUF_ADDR(head);
printk(KERN_DEBUG "%s: RX pkt type 0x%04x from %pM to %pM "
"data %02x %02x %02x %02x %02x %02x %02x %02x "
"len %d\n",
"data %8ph len %d\n",
dev->name, ((u_short *)data)[6],
&data[6], data,
data[15], data[16], data[17], data[18],
data[19], data[20], data[21], data[22],
pkt_len);
&data[6], data, &data[15], pkt_len);
}
skb_reserve( skb, 2 ); /* 16 byte align */