aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAndre Guedes <andre.guedes@openbossa.org>2012-01-02 17:18:10 -0500
committerGustavo F. Padovan <padovan@profusion.mobi>2012-01-02 19:30:09 -0500
commitc1b9b4f45f014093231c568be9b5c2e392943696 (patch)
tree115b437ffe603d6ceb606633289408b3b66534f4 /net
parentb5b32b653dedb29eb95e57cbbaefc4abf7141cb2 (diff)
Bluetooth: Fix adv_work delay
This patch fixes the adv_work delay. It should be set to ADV_ CLEAR_TIMEOUT instead of (jiffies + ADV_CLEAR_TIMEOUT) since queue_delayed_work() receives the number of jiffies to wait before queueing. It also removes the unnecessary cancel_delayed_ work_sync() call in case LE scan has been disabled. Signed-off-by: Andre Guedes <andre.guedes@openbossa.org> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/hci_event.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 10152d23c987..444ca410b9e5 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -1054,9 +1054,8 @@ static void hci_cc_le_set_scan_enable(struct hci_dev *hdev,
1054 case LE_SCANNING_DISABLED: 1054 case LE_SCANNING_DISABLED:
1055 clear_bit(HCI_LE_SCAN, &hdev->dev_flags); 1055 clear_bit(HCI_LE_SCAN, &hdev->dev_flags);
1056 1056
1057 cancel_delayed_work_sync(&hdev->adv_work);
1058 queue_delayed_work(hdev->workqueue, &hdev->adv_work, 1057 queue_delayed_work(hdev->workqueue, &hdev->adv_work,
1059 jiffies + ADV_CLEAR_TIMEOUT); 1058 ADV_CLEAR_TIMEOUT);
1060 break; 1059 break;
1061 1060
1062 default: 1061 default: