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

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

Merge "net: usb: Add support for ETH_P_MAP as skb protocol type"

parents 4c97a7e6 9a36225c
Loading
Loading
Loading
Loading
+5 −2
Original line number Original line Diff line number Diff line
@@ -396,8 +396,11 @@ static __be16 rmnet_ip_type_trans(struct sk_buff *skb,
		protocol = htons(ETH_P_IPV6);
		protocol = htons(ETH_P_IPV6);
		break;
		break;
	default:
	default:
		pr_err("[%s] rmnet_recv() L3 protocol decode error: 0x%02x",
		/*
		       dev->name, skb->data[0] & 0xf0);
		 * There is no good way to determine if a packet has
		 * a MAP header. For now default to MAP protocol
		 */
		protocol = htons(ETH_P_MAP);
	}
	}


	return protocol;
	return protocol;