diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2020-01-15 13:02:19 -0800 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-01-15 22:28:51 +0100 |
commit | ef564119ba832f55337935038dc0a91baa7417d1 (patch) | |
tree | e748acbcbba2da80fe47c06d38e1dca652d20938 /drivers/bluetooth/hci_uart.h | |
parent | 1b1d29e5149990e44634b2e681de71effd463591 (diff) | |
download | linux-ef564119ba832f55337935038dc0a91baa7417d1.tar.gz linux-ef564119ba832f55337935038dc0a91baa7417d1.tar.bz2 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_uart.h')
-rw-r--r-- | drivers/bluetooth/hci_uart.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_uart.h b/drivers/bluetooth/hci_uart.h index 6ab631101019..4e039d7a16f8 100644 --- a/drivers/bluetooth/hci_uart.h +++ b/drivers/bluetooth/hci_uart.h @@ -143,6 +143,13 @@ struct h4_recv_pkt { .lsize = 1, \ .maxlen = HCI_MAX_EVENT_SIZE +#define H4_RECV_ISO \ + .type = HCI_ISODATA_PKT, \ + .hlen = HCI_ISO_HDR_SIZE, \ + .loff = 2, \ + .lsize = 2, \ + .maxlen = HCI_MAX_FRAME_SIZE \ + struct sk_buff *h4_recv_buf(struct hci_dev *hdev, struct sk_buff *skb, const unsigned char *buffer, int count, const struct h4_recv_pkt *pkts, int pkts_count); |