From: Andrei Emeltchenko Date: Mon, 15 Oct 2012 08:58:39 +0000 (+0300) Subject: Bluetooth: AMP: Use Loglink handle in ACL Handle field X-Git-Tag: v3.8-rc1~139^2~17^2~353^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=204a6e54280d53e6990e536998fbf8dfba41ecd3;p=platform%2Fkernel%2Flinux-3.10.git Bluetooth: AMP: Use Loglink handle in ACL Handle field For AMP HCI controller use Logical Link handle in HCI ACL Handle field. Signed-off-by: Andrei Emeltchenko Acked-by: Marcel Holtmann Signed-off-by: Gustavo Padovan --- diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 2e72c41..0ec776a 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -2162,7 +2162,18 @@ static void hci_queue_acl(struct hci_chan *chan, struct sk_buff_head *queue, skb->data_len = 0; bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT; - hci_add_acl_hdr(skb, conn->handle, flags); + + switch (hdev->dev_type) { + case HCI_BREDR: + hci_add_acl_hdr(skb, conn->handle, flags); + break; + case HCI_AMP: + hci_add_acl_hdr(skb, chan->handle, flags); + break; + default: + BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type); + return; + } list = skb_shinfo(skb)->frag_list; if (!list) {