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

Commit 2f7826c0 authored by David S. Miller's avatar David S. Miller
Browse files

[WAN] cosa.c: Build fix.



Caused by skb_reset_mac_header() changes, missing semicolon.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 85795d64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -773,7 +773,7 @@ static int sppp_rx_done(struct channel_data *chan)
	}
	chan->rx_skb->protocol = htons(ETH_P_WAN_PPP);
	chan->rx_skb->dev = chan->pppdev.dev;
	skb_reset_mac_header(chan->rx_skb)
	skb_reset_mac_header(chan->rx_skb);
	chan->stats.rx_packets++;
	chan->stats.rx_bytes += chan->cosa->rxsize;
	netif_rx(chan->rx_skb);