Commit 4851e2ea authored by Jukka Rissanen's avatar Jukka Rissanen
Browse files

usb: Fix net_hexdump_frags() parameters



One parameter was missing when calling net_hexdump_frags() which
caused compile error.

Signed-off-by: default avatarJukka Rissanen <jukka.rissanen@linux.intel.com>
parent f3f04bf9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -115,7 +115,7 @@ static int ecm_send(struct net_pkt *pkt)
	struct net_buf *frag;
	int b_idx = 0, ret;

	net_hexdump_frags("<", pkt);
	net_hexdump_frags("<", pkt, false);

	if (!pkt->frags) {
		return -ENODATA;
+1 −1
Original line number Diff line number Diff line
@@ -1001,7 +1001,7 @@ static int rndis_send(struct net_pkt *pkt)
		return -EPIPE;
	}

	net_hexdump_frags("<", pkt);
	net_hexdump_frags("<", pkt, true);

	if (!pkt->frags) {
		return -ENODATA;