diff options
| author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-03-21 10:34:32 +0200 | 
|---|---|---|
| committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-09 00:41:35 -0300 | 
| commit | bcd11ff7c2f7bf3d18fc9053994466e09b2d42d3 (patch) | |
| tree | e1a7d2744c8762764a75703d0f98975c4a3d4918 | |
| parent | 00e3112c5a90963bb7b56e0648d22fc51ed17d23 (diff) | |
| download | olio-linux-3.10-bcd11ff7c2f7bf3d18fc9053994466e09b2d42d3.tar.xz olio-linux-3.10-bcd11ff7c2f7bf3d18fc9053994466e09b2d42d3.zip  | |
Bluetooth: Remove unneeded timer clear
set_chan_timer clears timer itself
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo Padovan <gustavo@padovan.org>
| -rw-r--r-- | net/bluetooth/l2cap_core.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 4b66cad3ee3..b05311ef71d 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -453,7 +453,6 @@ void l2cap_chan_close(struct l2cap_chan *chan, int reason)  	case BT_CONFIG:  		if (chan->chan_type == L2CAP_CHAN_CONN_ORIENTED &&  					conn->hcon->type == ACL_LINK) { -			__clear_chan_timer(chan);  			__set_chan_timer(chan, sk->sk_sndtimeo);  			l2cap_send_disconn_req(conn, chan, reason);  		} else @@ -4542,7 +4541,6 @@ static inline void l2cap_check_encryption(struct l2cap_chan *chan, u8 encrypt)  	if (encrypt == 0x00) {  		if (chan->sec_level == BT_SECURITY_MEDIUM) { -			__clear_chan_timer(chan);  			__set_chan_timer(chan, L2CAP_ENC_TIMEOUT);  		} else if (chan->sec_level == BT_SECURITY_HIGH)  			l2cap_chan_close(chan, ECONNREFUSED); @@ -4600,7 +4598,6 @@ int l2cap_security_cfm(struct hci_conn *hcon, u8 status, u8 encrypt)  			if (!status) {  				l2cap_send_conn_req(chan);  			} else { -				__clear_chan_timer(chan);  				__set_chan_timer(chan, L2CAP_DISC_TIMEOUT);  			}  		} else if (chan->state == BT_CONNECT2) {  |