diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-10-31 17:46:31 +0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-11-02 02:27:07 +0400 |
commit | 606e2a10a6d23e900dad0b098a09438a5f7e0495 (patch) | |
tree | 9439603f4a6a2c238828e661ccbc889984ebcb3a /net/bluetooth/amp.c | |
parent | 5ce66b59d787478f57a6f3368ff23d75a06e76e2 (diff) | |
download | linux-606e2a10a6d23e900dad0b098a09438a5f7e0495.tar.xz |
Bluetooth: AMP: Process Disc Logical Link
Add processing for HCI Disconnection Logical Link Complete
Event.
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>
Diffstat (limited to 'net/bluetooth/amp.c')
-rw-r--r-- | net/bluetooth/amp.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/bluetooth/amp.c b/net/bluetooth/amp.c index fbb63605a27e..0f3fef34eabc 100644 --- a/net/bluetooth/amp.c +++ b/net/bluetooth/amp.c @@ -421,3 +421,10 @@ void amp_create_logical_link(struct l2cap_chan *chan) done: hci_dev_put(hdev); } + +void amp_destroy_logical_link(struct hci_chan *hchan, u8 reason) +{ + BT_DBG("hchan %p", hchan); + + hci_chan_del(hchan); +} |