summaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2013-10-19 23:38:16 +0300
committerMarcel Holtmann <marcel@holtmann.org>2013-10-20 09:05:40 -0700
commit10994ce6e6696d2fb5a14601302da9b680fc9cc9 (patch)
tree6efd1a98ae1b2244d9619cef57207cac75073070 /net/bluetooth
parent7751ef1b3184ecfaebc5e5a8981407814ce0be0b (diff)
downloadlinux-10994ce6e6696d2fb5a14601302da9b680fc9cc9.tar.bz2
Bluetooth: Check for flag instead of features in update_adv_data()
It's better to check for the device flag instead of device features so that we avoid unnecessary HCI commands when the feature is supported but disabled (i.e. the flag is unset). Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/mgmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index f39bab059fcc..dd0bd4a55c8a 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -632,7 +632,7 @@ static void update_adv_data(struct hci_request *req)
struct hci_cp_le_set_adv_data cp;
u8 len;
- if (!lmp_le_capable(hdev))
+ if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
return;
memset(&cp, 0, sizeof(cp));