From: Luiz Augusto von Dentz Date: Wed, 15 Jan 2020 21:02:16 +0000 (-0800) Subject: Bluetooth: hci_vhci: Add support for ISO packets X-Git-Tag: v5.10.7~3383^2~12^2~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f92a8cb569e39e28515e3f9c0ccaa16f874644b7;p=platform%2Fkernel%2Flinux-rpi.git Bluetooth: hci_vhci: Add support for ISO packets This make virtual controllers to pass ISO packets around. Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c index 65e41c1..8ab26de 100644 --- a/drivers/bluetooth/hci_vhci.c +++ b/drivers/bluetooth/hci_vhci.c @@ -178,6 +178,7 @@ static inline ssize_t vhci_get_user(struct vhci_data *data, case HCI_EVENT_PKT: case HCI_ACLDATA_PKT: case HCI_SCODATA_PKT: + case HCI_ISODATA_PKT: if (!data->hdev) { kfree_skb(skb); return -ENODEV;