diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2025-03-12 11:14:21 -0400 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2025-03-25 12:47:07 -0400 |
commit | 5b86e2a575b06b7bd5f32e933c4d5b416ee91444 (patch) | |
tree | 2c9fa63e45c675e9be400a9c87d29ee6e59ae4a7 | |
parent | 13218453521d75916dfed55efb8e809bfc03cb4b (diff) | |
download | linux-stable-5b86e2a575b06b7bd5f32e933c4d5b416ee91444.tar.gz linux-stable-5b86e2a575b06b7bd5f32e933c4d5b416ee91444.tar.bz2 linux-stable-5b86e2a575b06b7bd5f32e933c4d5b416ee91444.zip |
Bluetooth: hci_vhci: Mark Sync Flow Control as supported
This sets HCI_QUIRK_SYNC_FLOWCTL_SUPPORTED which indicates that
controllers created by vhci driver support Sync Flow Control.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
-rw-r--r-- | drivers/bluetooth/hci_vhci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/hci_vhci.c b/drivers/bluetooth/hci_vhci.c index 963741490106..a51935d37e5d 100644 --- a/drivers/bluetooth/hci_vhci.c +++ b/drivers/bluetooth/hci_vhci.c @@ -416,6 +416,7 @@ static int __vhci_create_device(struct vhci_data *data, __u8 opcode) hdev->wakeup = vhci_wakeup; hdev->setup = vhci_setup; set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks); + set_bit(HCI_QUIRK_SYNC_FLOWCTL_SUPPORTED, &hdev->quirks); /* bit 6 is for external configuration */ if (opcode & 0x40) |