summaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci_core.h
diff options
context:
space:
mode:
authorVinicius Costa Gomes2012-01-04 15:57:17 +0100
committerJohan Hedberg2012-02-13 16:01:21 +0100
commit1931782b67bd1b81007022e8311669c40bb7d5b1 (patch)
tree7ab32be2e17a71dc242be4755899a55d6dd5368b /include/net/bluetooth/hci_core.h
parentBluetooth: Remove magic number from ACL TO (diff)
downloadkernel-qcow2-linux-1931782b67bd1b81007022e8311669c40bb7d5b1.tar.gz
kernel-qcow2-linux-1931782b67bd1b81007022e8311669c40bb7d5b1.tar.xz
kernel-qcow2-linux-1931782b67bd1b81007022e8311669c40bb7d5b1.zip
Bluetooth: Fix using an absolute timeout on hci_conn_put()
queue_delayed_work() expects a relative time for when that work should be scheduled. Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r--include/net/bluetooth/hci_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index a8680da7f400..25a6c3fd7d1a 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -588,7 +588,7 @@ static inline void hci_conn_put(struct hci_conn *conn)
}
cancel_delayed_work_sync(&conn->disc_work);
queue_delayed_work(conn->hdev->workqueue,
- &conn->disc_work, jiffies + timeo);
+ &conn->disc_work, timeo);
}
}