aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_event.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r--net/bluetooth/hci_event.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 0b9e646d1758..aa325eec40db 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -1287,6 +1287,11 @@ static void hci_cc_write_le_host_supported(struct hci_dev *hdev,
1287 hdev->host_features[0] |= LMP_HOST_LE; 1287 hdev->host_features[0] |= LMP_HOST_LE;
1288 else 1288 else
1289 hdev->host_features[0] &= ~LMP_HOST_LE; 1289 hdev->host_features[0] &= ~LMP_HOST_LE;
1290
1291 if (sent->simul)
1292 hdev->host_features[0] |= LMP_HOST_LE_BREDR;
1293 else
1294 hdev->host_features[0] &= ~LMP_HOST_LE_BREDR;
1290 } 1295 }
1291 1296
1292 if (test_bit(HCI_MGMT, &hdev->dev_flags) && 1297 if (test_bit(HCI_MGMT, &hdev->dev_flags) &&