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

Commit 707d19d9 authored by Santoshkumar Zalake's avatar Santoshkumar Zalake Committed by Gerrit - the friendly Code Review server
Browse files

net: stmmac: Update unused variable



Re-arrange the ‘is_udp’ variable
to avoid mark as unused variable.

Change-Id: I09c85e0467a42d34b49a54a91c3e23bcdf42a15c
Signed-off-by: default avatarSantoshkumar Zalake <szalake@codeaurora.org>
parent 91b3e3c0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -220,7 +220,6 @@ void dwmac_qcom_program_avb_algorithm(struct stmmac_priv *priv,

unsigned int dwmac_qcom_get_plat_tx_coal_frames(struct sk_buff *skb)
{
	bool is_udp;
	unsigned int eth_type;

	eth_type = dwmac_qcom_get_eth_type(skb->data);
@@ -234,7 +233,7 @@ unsigned int dwmac_qcom_get_plat_tx_coal_frames(struct sk_buff *skb)
		return AVB_INT_MOD;
	if (eth_type == ETH_P_IP || eth_type == ETH_P_IPV6) {
#ifdef CONFIG_PTPSUPPORT_OBJ
		is_udp = (((eth_type == ETH_P_IP) &&
		bool is_udp = (((eth_type == ETH_P_IP) &&
				   (ip_hdr(skb)->protocol ==
					IPPROTO_UDP)) ||
				  ((eth_type == ETH_P_IPV6) &&