summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Padovan2012-05-21 18:58:21 +0200
committerJohan Hedberg2012-06-05 05:34:06 +0200
commitbe4aad05af0ec949a91e7bbaa55c02a954714473 (patch)
tree5c7c2d7eb7a40460181cd6fafc7cd850ec744051
parentBluetooth: Silent sparse warnings (diff)
downloadkernel-qcow2-linux-be4aad05af0ec949a91e7bbaa55c02a954714473.tar.gz
kernel-qcow2-linux-be4aad05af0ec949a91e7bbaa55c02a954714473.tar.xz
kernel-qcow2-linux-be4aad05af0ec949a91e7bbaa55c02a954714473.zip
Bluetooth: Remove double check for BT_CONNECTED
The same check is done just before call l2cap_streaming_send() Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Reviewed-by: Mat Martineau <mathewm@codeaurora.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r--net/bluetooth/l2cap_core.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index c85a3a2a37bf..5bf828753a93 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)) {