net: amd: a2065: Use print_hex_dump_debug() helper
authorGeert Uytterhoeven <geert@linux-m68k.org>
Sun, 12 Jan 2020 16:33:54 +0000 (17:33 +0100)
committerJakub Kicinski <kuba@kernel.org>
Mon, 13 Jan 2020 00:20:26 +0000 (16:20 -0800)
Use the print_hex_dump_debug() helper, instead of open-coding the same
operations.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/amd/a2065.c

index 0b1affee87e26c832c4233a607f306d46b447ae1..2f808dbc8b0ed9e6035378aef6abac1fdf91646e 100644 (file)
@@ -547,11 +547,10 @@ static netdev_tx_t lance_start_xmit(struct sk_buff *skb,
        if (!lance_tx_buffs_avail(lp))
                goto out_free;
 
-#ifdef DEBUG
        /* dump the packet */
-       print_hex_dump(KERN_DEBUG, "skb->data: ", DUMP_PREFIX_NONE,
-                      16, 1, skb->data, 64, true);
-#endif
+       print_hex_dump_debug("skb->data: ", DUMP_PREFIX_NONE, 16, 1, skb->data,
+                            64, true);
+
        entry = lp->tx_new & lp->tx_ring_mod_mask;
        ib->btx_ring[entry].length = (-skblen) | 0xf000;
        ib->btx_ring[entry].misc = 0;