diff options
Diffstat (limited to 'drivers/net/wan/syncppp.c')
-rw-r--r-- | drivers/net/wan/syncppp.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/wan/syncppp.c b/drivers/net/wan/syncppp.c index 6e92f7b44b1a..58ae8a2223af 100644 --- a/drivers/net/wan/syncppp.c +++ b/drivers/net/wan/syncppp.c | |||
@@ -284,7 +284,6 @@ static void sppp_input (struct net_device *dev, struct sk_buff *skb) | |||
284 | printk(KERN_DEBUG "Yow an IP frame.\n"); | 284 | printk(KERN_DEBUG "Yow an IP frame.\n"); |
285 | skb->protocol=htons(ETH_P_IP); | 285 | skb->protocol=htons(ETH_P_IP); |
286 | netif_rx(skb); | 286 | netif_rx(skb); |
287 | dev->last_rx = jiffies; | ||
288 | goto done; | 287 | goto done; |
289 | } | 288 | } |
290 | break; | 289 | break; |
@@ -294,7 +293,6 @@ static void sppp_input (struct net_device *dev, struct sk_buff *skb) | |||
294 | if (sp->lcp.state == LCP_STATE_OPENED) { | 293 | if (sp->lcp.state == LCP_STATE_OPENED) { |
295 | skb->protocol=htons(ETH_P_IPX); | 294 | skb->protocol=htons(ETH_P_IPX); |
296 | netif_rx(skb); | 295 | netif_rx(skb); |
297 | dev->last_rx = jiffies; | ||
298 | goto done; | 296 | goto done; |
299 | } | 297 | } |
300 | break; | 298 | break; |
@@ -321,14 +319,12 @@ static void sppp_input (struct net_device *dev, struct sk_buff *skb) | |||
321 | case ETH_P_IP: | 319 | case ETH_P_IP: |
322 | skb->protocol=htons(ETH_P_IP); | 320 | skb->protocol=htons(ETH_P_IP); |
323 | netif_rx(skb); | 321 | netif_rx(skb); |
324 | dev->last_rx = jiffies; | ||
325 | goto done; | 322 | goto done; |
326 | #endif | 323 | #endif |
327 | #ifdef CONFIG_IPX | 324 | #ifdef CONFIG_IPX |
328 | case ETH_P_IPX: | 325 | case ETH_P_IPX: |
329 | skb->protocol=htons(ETH_P_IPX); | 326 | skb->protocol=htons(ETH_P_IPX); |
330 | netif_rx(skb); | 327 | netif_rx(skb); |
331 | dev->last_rx = jiffies; | ||
332 | goto done; | 328 | goto done; |
333 | #endif | 329 | #endif |
334 | } | 330 | } |