Bluetooth: Fix indentation whitespace
authorMat Martineau <mathewm@codeaurora.org>
Wed, 29 Jun 2011 21:35:20 +0000 (14:35 -0700)
committerJaikumar Ganesh <jaikumar@google.com>
Mon, 11 Jul 2011 18:59:25 +0000 (11:59 -0700)
Signed-off-by: Mat Martineau <mathewm@codeaurora.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/l2cap_core.c

index d37a50197ddd3fd0c233f675a287fbe59b445576..393f1a4b1c28702a87e8edf49ccd2868e09d38f6 100644 (file)
@@ -223,18 +223,18 @@ static u16 l2cap_alloc_cid(struct l2cap_conn *conn)
 
 static void l2cap_set_timer(struct l2cap_chan *chan, struct timer_list *timer, long timeout)
 {
-       BT_DBG("chan %p state %d timeout %ld", chan->sk, chan->state, timeout);
+       BT_DBG("chan %p state %d timeout %ld", chan->sk, chan->state, timeout);
 
-       if (!mod_timer(timer, jiffies + timeout))
-              chan_hold(chan);
+       if (!mod_timer(timer, jiffies + timeout))
+               chan_hold(chan);
 }
 
 static void l2cap_clear_timer(struct l2cap_chan *chan, struct timer_list *timer)
 {
-       BT_DBG("chan %p state %d", chan, chan->state);
+       BT_DBG("chan %p state %d", chan, chan->state);
 
-       if (timer_pending(timer) && del_timer(timer))
-              chan_put(chan);
+       if (timer_pending(timer) && del_timer(timer))
+               chan_put(chan);
 }
 
 static void l2cap_state_change(struct l2cap_chan *chan, int state)