Bluetooth: ISO: Set CIS bit only for devices with CIS support
authorVlad Pruteanu <vlad.pruteanu@nxp.com>
Tue, 12 Sep 2023 06:33:29 +0000 (09:33 +0300)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Mon, 23 Oct 2023 17:59:26 +0000 (10:59 -0700)
Currently the CIS bit that can be set by the host is set for any device
that has CIS or BIS support. In reality, devices that support BIS may not
allow that bit to be set and so, the HCI bring up fails for them.

This commit fixes this by only setting the bit for CIS capable devices.

Signed-off-by: Vlad Pruteanu <vlad.pruteanu@nxp.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
net/bluetooth/hci_sync.c

index 3485602518fed36ed00097596c3abdf64392c9d2..c6f57af88bfdca63b03483f20e086b69aedd1d6f 100644 (file)
@@ -4264,12 +4264,12 @@ static int hci_le_set_host_feature_sync(struct hci_dev *hdev)
 {
        struct hci_cp_le_set_host_feature cp;
 
-       if (!iso_capable(hdev))
+       if (!cis_capable(hdev))
                return 0;
 
        memset(&cp, 0, sizeof(cp));
 
-       /* Isochronous Channels (Host Support) */
+       /* Connected Isochronous Channels (Host Support) */
        cp.bit_number = 32;
        cp.bit_value = 1;