aboutsummaryrefslogtreecommitdiffstats
path: root/net/ax25/ax25_subr.c
diff options
context:
space:
mode:
authorYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>2007-02-09 09:24:31 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2007-02-11 02:19:18 -0500
commit528930b91ee89a05a6264629cf99109652c19ca8 (patch)
treec4355a75eda74ff78ee776d02ec9152cb76405d0 /net/ax25/ax25_subr.c
parentf7d57453d20e27de69ecafd121005e9d13a0f427 (diff)
[NET] AX25: Fix whitespace errors.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ax25/ax25_subr.c')
-rw-r--r--net/ax25/ax25_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ax25/ax25_subr.c b/net/ax25/ax25_subr.c
index c41dbe5fadee..85c58c49b4d0 100644
--- a/net/ax25/ax25_subr.c
+++ b/net/ax25/ax25_subr.c
@@ -56,7 +56,7 @@ void ax25_frames_acked(ax25_cb *ax25, unsigned short nr)
56 */ 56 */
57 if (ax25->va != nr) { 57 if (ax25->va != nr) {
58 while (skb_peek(&ax25->ack_queue) != NULL && ax25->va != nr) { 58 while (skb_peek(&ax25->ack_queue) != NULL && ax25->va != nr) {
59 skb = skb_dequeue(&ax25->ack_queue); 59 skb = skb_dequeue(&ax25->ack_queue);
60 kfree_skb(skb); 60 kfree_skb(skb);
61 ax25->va = (ax25->va + 1) % ax25->modulus; 61 ax25->va = (ax25->va + 1) % ax25->modulus;
62 } 62 }
@@ -65,7 +65,7 @@ void ax25_frames_acked(ax25_cb *ax25, unsigned short nr)
65 65
66void ax25_requeue_frames(ax25_cb *ax25) 66void ax25_requeue_frames(ax25_cb *ax25)
67{ 67{
68 struct sk_buff *skb, *skb_prev = NULL; 68 struct sk_buff *skb, *skb_prev = NULL;
69 69
70 /* 70 /*
71 * Requeue all the un-ack-ed frames on the output queue to be picked 71 * Requeue all the un-ack-ed frames on the output queue to be picked