diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2020-01-15 22:02:19 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-01-15 22:28:51 +0100 |
commit | ef564119ba832f55337935038dc0a91baa7417d1 (patch) | |
tree | e748acbcbba2da80fe47c06d38e1dca652d20938 /drivers/bluetooth/hci_h4.c | |
parent | Bluetooth: Make use of __check_timeout on hci_sched_le (diff) | |
download | linux-ef564119ba832f55337935038dc0a91baa7417d1.tar.xz linux-ef564119ba832f55337935038dc0a91baa7417d1.zip |
Bluetooth: hci_h4: Add support for ISO packets
This enables H4 driver to properly handle ISO packets.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/hci_h4.c')
-rw-r--r-- | drivers/bluetooth/hci_h4.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_h4.c b/drivers/bluetooth/hci_h4.c index 19ba52005009..6dc1fbeb564b 100644 --- a/drivers/bluetooth/hci_h4.c +++ b/drivers/bluetooth/hci_h4.c @@ -103,6 +103,7 @@ static const struct h4_recv_pkt h4_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 }, }; /* Recv data */ |