Bluetooth: Use AUTO_OFF constant in jiffies
Move AUTO_OFF_TIMEOUT to other constants changing name to HCI_AUTO_OFF_TIMEOUT and convert to jiffies. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
committed by
Gustavo Padovan
parent
33cef264cd
commit
9345d40c58
@@ -142,8 +142,9 @@ enum {
|
|||||||
#define HCI_DISCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
|
#define HCI_DISCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
|
||||||
#define HCI_PAIRING_TIMEOUT msecs_to_jiffies(60000) /* 60 seconds */
|
#define HCI_PAIRING_TIMEOUT msecs_to_jiffies(60000) /* 60 seconds */
|
||||||
#define HCI_INIT_TIMEOUT msecs_to_jiffies(10000) /* 10 seconds */
|
#define HCI_INIT_TIMEOUT msecs_to_jiffies(10000) /* 10 seconds */
|
||||||
#define HCI_CMD_TIMEOUT msecs_to_jiffies(1000) /* 1 seconds */
|
#define HCI_CMD_TIMEOUT msecs_to_jiffies(1000) /* 1 second */
|
||||||
#define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */
|
#define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */
|
||||||
|
#define HCI_AUTO_OFF_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
|
||||||
|
|
||||||
/* HCI data types */
|
/* HCI data types */
|
||||||
#define HCI_COMMAND_PKT 0x01
|
#define HCI_COMMAND_PKT 0x01
|
||||||
|
@@ -33,8 +33,6 @@
|
|||||||
#include <net/bluetooth/bluetooth.h>
|
#include <net/bluetooth/bluetooth.h>
|
||||||
#include <net/bluetooth/hci_core.h>
|
#include <net/bluetooth/hci_core.h>
|
||||||
|
|
||||||
#define AUTO_OFF_TIMEOUT 2000
|
|
||||||
|
|
||||||
static void hci_rx_work(struct work_struct *work);
|
static void hci_rx_work(struct work_struct *work);
|
||||||
static void hci_cmd_work(struct work_struct *work);
|
static void hci_cmd_work(struct work_struct *work);
|
||||||
static void hci_tx_work(struct work_struct *work);
|
static void hci_tx_work(struct work_struct *work);
|
||||||
@@ -1083,8 +1081,7 @@ static void hci_power_on(struct work_struct *work)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
|
if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
|
||||||
schedule_delayed_work(&hdev->power_off,
|
schedule_delayed_work(&hdev->power_off, HCI_AUTO_OFF_TIMEOUT);
|
||||||
msecs_to_jiffies(AUTO_OFF_TIMEOUT));
|
|
||||||
|
|
||||||
if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
|
if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
|
||||||
mgmt_index_added(hdev);
|
mgmt_index_added(hdev);
|
||||||
|
Reference in New Issue
Block a user