]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[WAN] cosa.c: Build fix.
authorDavid S. Miller <davem@sunset.davemloft.net>
Mon, 26 Mar 2007 09:00:58 +0000 (02:00 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Thu, 26 Apr 2007 05:28:11 +0000 (22:28 -0700)
Caused by skb_reset_mac_header() changes, missing semicolon.

Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wan/cosa.c

index c198511ec3f56c31cbeb1ef02235b8127d019c2f..23464735fa88968746a4e84af9dfd94317420dd4 100644 (file)
@@ -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);