]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
net: atarilance: use %8ph for printing hex string
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Wed, 30 Nov 2016 22:02:54 +0000 (23:02 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 2 Dec 2016 17:03:35 +0000 (12:03 -0500)
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>
drivers/net/ethernet/amd/atarilance.c

index e53ccc3b7d8dcf73eff299469a0dbb677f61058d..796c37a5bbde0d6ba693eddf7b7099884de8ebcc 100644 (file)
@@ -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 */