aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorAndre Guedes <andre.guedes@openbossa.org>2012-07-24 14:03:46 -0400
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>2012-08-06 14:02:56 -0400
commited3fa31f35896b42c54333edabf0a9e986fa952c (patch)
tree5547949dcdfafb1cbf31e4e279e4d29e9f53c765 /net/bluetooth
parent78eb2f985c17eab34a0ef919b3263d6b08064e98 (diff)
Bluetooth: Use lmp_bredr_capable where applicable
This patch replaces all LMP_NO_BREDR bit checking by the helper macro lmp_bredr_capable. Signed-off-by: Andre Guedes <andre.guedes@openbossa.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/mgmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 2a0f695e33d4..990ec6affca5 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -383,7 +383,7 @@ static u32 get_supported_settings(struct hci_dev *hdev)
383 if (hdev->features[6] & LMP_SIMPLE_PAIR) 383 if (hdev->features[6] & LMP_SIMPLE_PAIR)
384 settings |= MGMT_SETTING_SSP; 384 settings |= MGMT_SETTING_SSP;
385 385
386 if (!(hdev->features[4] & LMP_NO_BREDR)) { 386 if (lmp_bredr_capable(hdev)) {
387 settings |= MGMT_SETTING_BREDR; 387 settings |= MGMT_SETTING_BREDR;
388 settings |= MGMT_SETTING_LINK_SECURITY; 388 settings |= MGMT_SETTING_LINK_SECURITY;
389 } 389 }
@@ -413,7 +413,7 @@ static u32 get_current_settings(struct hci_dev *hdev)
413 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags)) 413 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
414 settings |= MGMT_SETTING_PAIRABLE; 414 settings |= MGMT_SETTING_PAIRABLE;
415 415
416 if (!(hdev->features[4] & LMP_NO_BREDR)) 416 if (lmp_bredr_capable(hdev))
417 settings |= MGMT_SETTING_BREDR; 417 settings |= MGMT_SETTING_BREDR;
418 418
419 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) 419 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))