summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/l2cap_core.c
diff options
context:
space:
mode:
authorJohan Hedberg2013-05-13 10:15:07 +0200
committerMarcel Holtmann2013-12-05 16:05:32 +0100
commit96ac34fb4050e358eed55ac93572f58191a304aa (patch)
treeab123cd1e455ee13b0eea2232777c41cbffa0d71 /net/bluetooth/l2cap_core.c
parentBluetooth: Pass command length to LE signaling channel handlers (diff)
downloadkernel-qcow2-linux-96ac34fb4050e358eed55ac93572f58191a304aa.tar.gz
kernel-qcow2-linux-96ac34fb4050e358eed55ac93572f58191a304aa.tar.xz
kernel-qcow2-linux-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/bluetooth/l2cap_core.c')
-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;
}