diff options
author | Mat Martineau <mathewm@codeaurora.org> | 2011-06-29 17:35:20 -0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-06-30 17:25:33 -0400 |
commit | 774e5651460ee7c688914fd76b6caa1675de355c (patch) | |
tree | 075f9db8d5e0af906dec0a60a64c5e291bcd5040 /net | |
parent | 9a7b1501182477299e678b787e32fca5844c7ea1 (diff) |
Bluetooth: Fix indentation whitespace
Signed-off-by: Mat Martineau <mathewm@codeaurora.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/l2cap_core.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 9ec9c8c5eb5e..ab2bfcf3cd24 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c | |||
@@ -223,18 +223,18 @@ static u16 l2cap_alloc_cid(struct l2cap_conn *conn) | |||
223 | 223 | ||
224 | static void l2cap_set_timer(struct l2cap_chan *chan, struct timer_list *timer, long timeout) | 224 | static void l2cap_set_timer(struct l2cap_chan *chan, struct timer_list *timer, long timeout) |
225 | { | 225 | { |
226 | BT_DBG("chan %p state %d timeout %ld", chan->sk, chan->state, timeout); | 226 | BT_DBG("chan %p state %d timeout %ld", chan->sk, chan->state, timeout); |
227 | 227 | ||
228 | if (!mod_timer(timer, jiffies + timeout)) | 228 | if (!mod_timer(timer, jiffies + timeout)) |
229 | chan_hold(chan); | 229 | chan_hold(chan); |
230 | } | 230 | } |
231 | 231 | ||
232 | static void l2cap_clear_timer(struct l2cap_chan *chan, struct timer_list *timer) | 232 | static void l2cap_clear_timer(struct l2cap_chan *chan, struct timer_list *timer) |
233 | { | 233 | { |
234 | BT_DBG("chan %p state %d", chan, chan->state); | 234 | BT_DBG("chan %p state %d", chan, chan->state); |
235 | 235 | ||
236 | if (timer_pending(timer) && del_timer(timer)) | 236 | if (timer_pending(timer) && del_timer(timer)) |
237 | chan_put(chan); | 237 | chan_put(chan); |
238 | } | 238 | } |
239 | 239 | ||
240 | static void l2cap_state_change(struct l2cap_chan *chan, int state) | 240 | static void l2cap_state_change(struct l2cap_chan *chan, int state) |