mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
Bluetooth: Add a helper function to extract iso header
Add a helper function hci_iso_hdr() to extract iso header from skb. Signed-off-by: Kiran K <kiran.k@intel.com> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
parent
525034e2e2
commit
29aeb4e891
@ -2901,6 +2901,11 @@ static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb)
|
||||
return (struct hci_sco_hdr *) skb->data;
|
||||
}
|
||||
|
||||
static inline struct hci_iso_hdr *hci_iso_hdr(const struct sk_buff *skb)
|
||||
{
|
||||
return (struct hci_iso_hdr *)skb->data;
|
||||
}
|
||||
|
||||
/* Command opcode pack/unpack */
|
||||
#define hci_opcode_pack(ogf, ocf) ((__u16) ((ocf & 0x03ff)|(ogf << 10)))
|
||||
#define hci_opcode_ogf(op) (op >> 10)
|
||||
|
Loading…
Reference in New Issue
Block a user