]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
Bluetooth: MGMT: report BIS capability flags in supported settings
authorPauli Virtanen <pav@iki.fi>
Thu, 4 Dec 2025 20:40:20 +0000 (22:40 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Jan 2026 09:16:44 +0000 (10:16 +0100)
[ Upstream commit 348240e5fa901d3d4ba8dffa0e2ba9fc7aba93ab ]

MGMT_SETTING_ISO_BROADCASTER and MGMT_SETTING_ISO_RECEIVER flags are
missing from supported_settings although they are in current_settings.

Report them also in supported_settings to be consistent.

Fixes: ae7533613133 ("Bluetooth: Check for ISO support in controller")
Signed-off-by: Pauli Virtanen <pav@iki.fi>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/bluetooth/mgmt.c

index 262bf984d2aafa259c87d3e7b74b85209be3901c..211951eb832af783d71b6c8e26ca2f75f7c32153 100644 (file)
@@ -849,6 +849,12 @@ static u32 get_supported_settings(struct hci_dev *hdev)
        if (cis_peripheral_capable(hdev))
                settings |= MGMT_SETTING_CIS_PERIPHERAL;
 
+       if (bis_capable(hdev))
+               settings |= MGMT_SETTING_ISO_BROADCASTER;
+
+       if (sync_recv_capable(hdev))
+               settings |= MGMT_SETTING_ISO_SYNC_RECEIVER;
+
        if (ll_privacy_capable(hdev))
                settings |= MGMT_SETTING_LL_PRIVACY;