Skip to content

Commit

Permalink
HACK: bluetooth: extend timeouts to 20 seconds
Browse files Browse the repository at this point in the history
Idea is to capture debug output in this window
  • Loading branch information
P33M committed Oct 30, 2024
1 parent 236b3d1 commit 14717de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/net/bluetooth/hci.h
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,8 @@ enum {
/* HCI timeouts */
#define HCI_DISCONN_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
#define HCI_PAIRING_TIMEOUT msecs_to_jiffies(60000) /* 60 seconds */
#define HCI_INIT_TIMEOUT msecs_to_jiffies(10000) /* 10 seconds */
#define HCI_CMD_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
#define HCI_INIT_TIMEOUT msecs_to_jiffies(20000) /* 20 seconds */
#define HCI_CMD_TIMEOUT msecs_to_jiffies(20000) /* 20 seconds */
#define HCI_NCMD_TIMEOUT msecs_to_jiffies(4000) /* 4 seconds */
#define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */
#define HCI_AUTO_OFF_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */
Expand Down

0 comments on commit 14717de

Please sign in to comment.