Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6a01c4b authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: kernel: rndis_ipa: set header removal value to meet Ethernet length"

parents 3669461b 19f3c9c1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -320,10 +320,10 @@ static struct ipa_ep_cfg ipa_to_usb_ep_cfg = {
		.dst  = IPA_CLIENT_APPS_LAN_CONS,
	},
	.hdr = {
		.hdr_len = ETH_ALEN + sizeof(struct rndis_pkt_hdr),
		.hdr_len = ETH_HLEN + sizeof(struct rndis_pkt_hdr),
		.hdr_ofst_metadata_valid = false,
		.hdr_ofst_metadata = 0,
		.hdr_additional_const_len = ETH_ALEN,
		.hdr_additional_const_len = ETH_HLEN,
		.hdr_ofst_pkt_size_valid = true,
		.hdr_ofst_pkt_size = 3*sizeof(u32),
		.hdr_a5_mux = false,
@@ -365,7 +365,7 @@ static struct ipa_ep_cfg usb_to_ipa_ep_cfg = {
		.dst  = IPA_CLIENT_APPS_LAN_CONS,
	},
	.hdr = {
		.hdr_len = ETH_ALEN,
		.hdr_len = ETH_HLEN,
		.hdr_ofst_metadata_valid = false,
		.hdr_ofst_metadata = 0,
		.hdr_additional_const_len = 0,