diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2012-03-06 19:37:06 -0300 |
---|---|---|
committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-09 00:41:29 -0300 |
commit | bc3dd33cef001e61da0f71b5d8f918b3dbaa4a94 (patch) | |
tree | 40aea7e371f655c9c8cc4b1e37831df7c7ab1c4d /net/bluetooth/hci_event.c | |
parent | 097db76cdccd8107784e2c845b838ab333be02dc (diff) | |
download | op-kernel-dev-bc3dd33cef001e61da0f71b5d8f918b3dbaa4a94.zip op-kernel-dev-bc3dd33cef001e61da0f71b5d8f918b3dbaa4a94.tar.gz |
Bluetooth: Check FINDING state in interleaved discovery
In order to do interleaved discovery we should be in DISCOVERY_
FINDING state. Otherwise, discovery should be stopped.
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r-- | net/bluetooth/hci_event.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 982ae3c..50ff9a9 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -1098,7 +1098,8 @@ static void hci_cc_le_set_scan_enable(struct hci_dev *hdev, schedule_delayed_work(&hdev->adv_work, ADV_CLEAR_TIMEOUT); - if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED) { + if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED && + hdev->discovery.state == DISCOVERY_FINDING) { mgmt_interleaved_discovery(hdev); } else { hci_dev_lock(hdev); |