mirror of https://gitee.com/openkylin/linux.git
net: cxgb3: fix various indentation issues
There are handful of lines that have indentation issues, fix these. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4a06fa67c4
commit
2acc0abc88
|
@ -3215,10 +3215,12 @@ void t3_start_sge_timers(struct adapter *adap)
|
|||
struct sge_qset *q = &adap->sge.qs[i];
|
||||
|
||||
if (q->tx_reclaim_timer.function)
|
||||
mod_timer(&q->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
|
||||
mod_timer(&q->tx_reclaim_timer,
|
||||
jiffies + TX_RECLAIM_PERIOD);
|
||||
|
||||
if (q->rx_reclaim_timer.function)
|
||||
mod_timer(&q->rx_reclaim_timer, jiffies + RX_RECLAIM_PERIOD);
|
||||
mod_timer(&q->rx_reclaim_timer,
|
||||
jiffies + RX_RECLAIM_PERIOD);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue