summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2013-05-13 11:15:07 +0300
committerMarcel Holtmann <marcel@holtmann.org>2013-12-05 07:05:32 -0800
commit96ac34fb4050e358eed55ac93572f58191a304aa (patch)
treeab123cd1e455ee13b0eea2232777c41cbffa0d71 /net
parent203e639ecbcc66c7c4d55f1f59bc61a1c1ca495d (diff)
downloadlinux-stable-96ac34fb4050e358eed55ac93572f58191a304aa.tar.gz
linux-stable-96ac34fb4050e358eed55ac93572f58191a304aa.tar.bz2
linux-stable-96ac34fb4050e358eed55ac93572f58191a304aa.zip
Bluetooth: Move LE L2CAP initiator procedure to its own function
Once connection oriented L2CAP channels over LE are supported they will need a completely separate handling from BR/EDR channels. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/l2cap_core.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index eafcdf65718b..d250d8af7fd6 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -1170,12 +1170,17 @@ static void l2cap_start_connection(struct l2cap_chan *chan)
}
}
+static void l2cap_le_start(struct l2cap_chan *chan)
+{
+ l2cap_chan_ready(chan);
+}
+
static void l2cap_do_start(struct l2cap_chan *chan)
{
struct l2cap_conn *conn = chan->conn;
if (conn->hcon->type == LE_LINK) {
- l2cap_chan_ready(chan);
+ l2cap_le_start(chan);
return;
}