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

[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
...@@ -773,7 +773,7 @@ static int sppp_rx_done(struct channel_data *chan) ...@@ -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->protocol = htons(ETH_P_WAN_PPP);
chan->rx_skb->dev = chan->pppdev.dev; 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_packets++;
chan->stats.rx_bytes += chan->cosa->rxsize; chan->stats.rx_bytes += chan->cosa->rxsize;
netif_rx(chan->rx_skb); netif_rx(chan->rx_skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment