From: Gustavo Padovan Date: Mon, 21 May 2012 16:58:21 +0000 (-0300) Subject: Bluetooth: Remove double check for BT_CONNECTED X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=be4aad05af0ec949a91e7bbaa55c02a954714473;p=linux-edison.git Bluetooth: Remove double check for BT_CONNECTED The same check is done just before call l2cap_streaming_send() Signed-off-by: Gustavo Padovan Reviewed-by: Mat Martineau Signed-off-by: Marcel Holtmann --- diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index c85a3a2a37b..5bf828753a9 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -1693,9 +1693,6 @@ static int l2cap_streaming_send(struct l2cap_chan *chan, BT_DBG("chan %p, skbs %p", chan, skbs); - if (chan->state != BT_CONNECTED) - return -ENOTCONN; - skb_queue_splice_tail_init(skbs, &chan->tx_q); while (!skb_queue_empty(&chan->tx_q)) {