Commit e07c5f2e authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Jakub Kicinski
Browse files

net: amd: a2065: Use print_hex_dump_debug() helper



Use the print_hex_dump_debug() helper, instead of open-coding the same
operations.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 2412643a
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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;