dect
/
linux-2.6
Archived
13
0
Fork 0

Bluetooth: Use lmp_sniff_capable where applicable

This patch replaces all LMP_SNIFF bit checking by the helper macro
lmp_sniff_capable.

Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
Andre Guedes 2012-07-24 15:03:51 -03:00 committed by Gustavo Padovan
parent 9f92ebf6c7
commit 6eded1004a
1 changed files with 1 additions and 1 deletions

View File

@ -627,7 +627,7 @@ static void hci_setup_link_policy(struct hci_dev *hdev)
link_policy |= HCI_LP_RSWITCH;
if (hdev->features[0] & LMP_HOLD)
link_policy |= HCI_LP_HOLD;
if (hdev->features[0] & LMP_SNIFF)
if (lmp_sniff_capable(hdev))
link_policy |= HCI_LP_SNIFF;
if (hdev->features[1] & LMP_PARK)
link_policy |= HCI_LP_PARK;