Bluetooth: hci_bcm: Add support for ISO packets
authorJakub Pawlowski <jpawlowski@google.com>
Thu, 17 Dec 2020 11:44:22 +0000 (12:44 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 18 Dec 2020 21:40:34 +0000 (22:40 +0100)
This enables bcm driver to properly handle ISO packets.

Signed-off-by: Jakub Pawlowski <jpawlowski@google.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/hci_bcm.c

index 8ea5ca8d71d6d2260965cfc1c9f4ae0e0a645d13..3764ceb6fa0d52a454bd2954f8c19c4e10ba060a 100644 (file)
@@ -654,6 +654,7 @@ static const struct h4_recv_pkt bcm_recv_pkts[] = {
        { H4_RECV_ACL,      .recv = hci_recv_frame },
        { H4_RECV_SCO,      .recv = hci_recv_frame },
        { H4_RECV_EVENT,    .recv = hci_recv_frame },
+       { H4_RECV_ISO,      .recv = hci_recv_frame },
        { BCM_RECV_LM_DIAG, .recv = hci_recv_diag  },
        { BCM_RECV_NULL,    .recv = hci_recv_diag  },
        { BCM_RECV_TYPE49,  .recv = hci_recv_diag  },