diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2012-07-24 15:03:51 -0300 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-08-06 15:02:57 -0300 |
commit | 6eded1004abb060fbdf69611abc560c717f2bb8b (patch) | |
tree | 050cea9e2aec799456aad66a0f97c3c0db79613f /net | |
parent | 9f92ebf6c72de444801ab4a922965bd1f90834ae (diff) | |
download | op-kernel-dev-6eded1004abb060fbdf69611abc560c717f2bb8b.zip op-kernel-dev-6eded1004abb060fbdf69611abc560c717f2bb8b.tar.gz |
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>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 5c71c85..eb9024a 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -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; |