mirror of
https://github.com/torvalds/linux.git
synced 2025-11-04 18:49:34 +02:00
Bluetooth: hci_h4: Add support for ISO packets in h4_recv.h
This adds ISO packet support in h4_recv.h, which was created before ISO packet handling was added to hci_h4.c and hci_uart.c Signed-off-by: Neeraj Sanjay Kale <neeraj.sanjaykale@nxp.com> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
parent
bdf9557f70
commit
61b27cdf02
1 changed files with 7 additions and 0 deletions
|
|
@ -38,6 +38,13 @@ struct h4_recv_pkt {
|
||||||
.lsize = 1, \
|
.lsize = 1, \
|
||||||
.maxlen = HCI_MAX_EVENT_SIZE
|
.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
|
||||||
|
|
||||||
static inline struct sk_buff *h4_recv_buf(struct hci_dev *hdev,
|
static inline struct sk_buff *h4_recv_buf(struct hci_dev *hdev,
|
||||||
struct sk_buff *skb,
|
struct sk_buff *skb,
|
||||||
const unsigned char *buffer,
|
const unsigned char *buffer,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue