dect
/
linux-2.6
Archived
13
0
Fork 0

Bluetooth: Use helper function sending EFS conf rsp

There is helper function used to send EFS Configuration Response.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
Andrei Emeltchenko 2012-10-25 15:20:43 +03:00 committed by Gustavo Padovan
parent fe79c6fea3
commit 35ba9561b9
1 changed files with 1 additions and 6 deletions

View File

@ -4374,16 +4374,11 @@ static void l2cap_logical_finish_create(struct l2cap_chan *chan,
struct hci_chan *hchan)
{
struct l2cap_conf_rsp rsp;
u8 code;
chan->hs_hcon = hchan->conn;
chan->hs_hcon->l2cap_data = chan->conn;
code = l2cap_build_conf_rsp(chan, &rsp,
L2CAP_CONF_SUCCESS, 0);
l2cap_send_cmd(chan->conn, chan->ident, L2CAP_CONF_RSP, code,
&rsp);
set_bit(CONF_OUTPUT_DONE, &chan->conf_state);
l2cap_send_efs_conf_rsp(chan, &rsp, chan->ident, 0);
if (test_bit(CONF_INPUT_DONE, &chan->conf_state)) {
int err;