mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
[NET] LAPB: Fix whitespace errors.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8ff24541d9
commit
56d6c3d7a7
4 changed files with 14 additions and 14 deletions
|
@ -59,7 +59,7 @@ void lapb_frames_acked(struct lapb_cb *lapb, unsigned short nr)
|
||||||
*/
|
*/
|
||||||
if (lapb->va != nr)
|
if (lapb->va != nr)
|
||||||
while (skb_peek(&lapb->ack_queue) && lapb->va != nr) {
|
while (skb_peek(&lapb->ack_queue) && lapb->va != nr) {
|
||||||
skb = skb_dequeue(&lapb->ack_queue);
|
skb = skb_dequeue(&lapb->ack_queue);
|
||||||
kfree_skb(skb);
|
kfree_skb(skb);
|
||||||
lapb->va = (lapb->va + 1) % modulus;
|
lapb->va = (lapb->va + 1) % modulus;
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ void lapb_frames_acked(struct lapb_cb *lapb, unsigned short nr)
|
||||||
|
|
||||||
void lapb_requeue_frames(struct lapb_cb *lapb)
|
void lapb_requeue_frames(struct lapb_cb *lapb)
|
||||||
{
|
{
|
||||||
struct sk_buff *skb, *skb_prev = NULL;
|
struct sk_buff *skb, *skb_prev = NULL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Requeue all the un-ack-ed frames on the output queue to be picked
|
* Requeue all the un-ack-ed frames on the output queue to be picked
|
||||||
|
|
Loading…
Reference in a new issue