|
@@ -33,8 +33,6 @@
|
|
|
#include <net/bluetooth/bluetooth.h>
|
|
|
#include <net/bluetooth/hci_core.h>
|
|
|
|
|
|
-#define AUTO_OFF_TIMEOUT 2000
|
|
|
-
|
|
|
static void hci_rx_work(struct work_struct *work);
|
|
|
static void hci_cmd_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;
|
|
|
|
|
|
if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
|
|
|
- schedule_delayed_work(&hdev->power_off,
|
|
|
- msecs_to_jiffies(AUTO_OFF_TIMEOUT));
|
|
|
+ schedule_delayed_work(&hdev->power_off, HCI_AUTO_OFF_TIMEOUT);
|
|
|
|
|
|
if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
|
|
|
mgmt_index_added(hdev);
|