Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

atm: eni: fix several indentation issues

There are several statements that have incorrect indentation. Fix
these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Colin Ian King and committed by
David S. Miller
59c03699 311af51d

+9 -9
+9 -9
drivers/atm/eni.c
··· 473 473 ENI_PRV_POS(skb) = eni_vcc->descr+size+1; 474 474 skb_queue_tail(&eni_dev->rx_queue,skb); 475 475 eni_vcc->last = skb; 476 - rx_enqueued++; 476 + rx_enqueued++; 477 477 } 478 478 eni_vcc->descr = here; 479 479 eni_out(dma_wr,MID_DMA_WR_RX); ··· 715 715 else eni_dev->slow = vcc; 716 716 eni_dev->last_slow = vcc; 717 717 } 718 - putting++; 718 + putting++; 719 719 ENI_VCC(vcc)->servicing++; 720 720 } 721 721 } ··· 744 744 } 745 745 EVENT("dequeued (size=%ld,pos=0x%lx)\n",ENI_PRV_SIZE(skb), 746 746 ENI_PRV_POS(skb)); 747 - rx_dequeued++; 747 + rx_dequeued++; 748 748 vcc = ATM_SKB(skb)->vcc; 749 749 eni_vcc = ENI_VCC(vcc); 750 750 first = 0; ··· 1174 1174 DPRINTK("dma_wr set to %d, tx_pos is now %ld\n",dma_wr,tx->tx_pos); 1175 1175 eni_out(dma_wr,MID_DMA_WR_TX); 1176 1176 skb_queue_tail(&eni_dev->tx_queue,skb); 1177 - queued++; 1177 + queued++; 1178 1178 return enq_ok; 1179 1179 } 1180 1180 ··· 1195 1195 if (res == enq_ok) continue; 1196 1196 DPRINTK("re-queuing TX PDU\n"); 1197 1197 skb_queue_head(&tx->backlog,skb); 1198 - requeued++; 1198 + requeued++; 1199 1199 if (res == enq_jam) return; 1200 1200 break; 1201 1201 } ··· 1232 1232 else dev_kfree_skb_irq(skb); 1233 1233 atomic_inc(&vcc->stats->tx); 1234 1234 wake_up(&eni_dev->tx_wait); 1235 - dma_complete++; 1235 + dma_complete++; 1236 1236 } 1237 1237 } 1238 1238 ··· 1555 1555 } 1556 1556 if (events & MID_TX_COMPLETE) { 1557 1557 EVENT("INT: TX COMPLETE\n",0,0); 1558 - tx_complete++; 1558 + tx_complete++; 1559 1559 wake_up(&eni_dev->tx_wait); 1560 1560 /* poll_rx ? */ 1561 1561 } ··· 2069 2069 } 2070 2070 *(u32 *) skb->data = htonl(*(u32 *) skb->data); 2071 2071 } 2072 - submitted++; 2072 + submitted++; 2073 2073 ATM_SKB(skb)->vcc = vcc; 2074 2074 tasklet_disable(&ENI_DEV(vcc->dev)->task); 2075 2075 res = do_tx(skb); 2076 2076 tasklet_enable(&ENI_DEV(vcc->dev)->task); 2077 2077 if (res == enq_ok) return 0; 2078 2078 skb_queue_tail(&ENI_VCC(vcc)->tx->backlog,skb); 2079 - backlogged++; 2079 + backlogged++; 2080 2080 tasklet_schedule(&ENI_DEV(vcc->dev)->task); 2081 2081 return 0; 2082 2082 }