mirror of
https://github.com/torvalds/linux.git
synced 2025-11-04 18:49:34 +02:00
Bluetooth: L2CAP: convert timeouts to secs_to_jiffies()
Commit b35108a51c ("jiffies: Define secs_to_jiffies()") introduced
secs_to_jiffies(). As the value here is a multiple of 1000, use
secs_to_jiffies() instead of msecs_to_jiffies() for readability.
Signed-off-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
parent
3f0a819e8c
commit
c9d84da18d
2 changed files with 4 additions and 4 deletions
|
|
@ -38,8 +38,8 @@
|
|||
#define L2CAP_DEFAULT_TX_WINDOW 63
|
||||
#define L2CAP_DEFAULT_EXT_WINDOW 0x3FFF
|
||||
#define L2CAP_DEFAULT_MAX_TX 3
|
||||
#define L2CAP_DEFAULT_RETRANS_TO 2000 /* 2 seconds */
|
||||
#define L2CAP_DEFAULT_MONITOR_TO 12000 /* 12 seconds */
|
||||
#define L2CAP_DEFAULT_RETRANS_TO 2 /* seconds */
|
||||
#define L2CAP_DEFAULT_MONITOR_TO 12 /* seconds */
|
||||
#define L2CAP_DEFAULT_MAX_PDU_SIZE 1492 /* Sized for AMP packet */
|
||||
#define L2CAP_DEFAULT_ACK_TO 200
|
||||
#define L2CAP_DEFAULT_MAX_SDU_SIZE 0xFFFF
|
||||
|
|
|
|||
|
|
@ -282,7 +282,7 @@ static void __set_retrans_timer(struct l2cap_chan *chan)
|
|||
if (!delayed_work_pending(&chan->monitor_timer) &&
|
||||
chan->retrans_timeout) {
|
||||
l2cap_set_timer(chan, &chan->retrans_timer,
|
||||
msecs_to_jiffies(chan->retrans_timeout));
|
||||
secs_to_jiffies(chan->retrans_timeout));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -291,7 +291,7 @@ static void __set_monitor_timer(struct l2cap_chan *chan)
|
|||
__clear_retrans_timer(chan);
|
||||
if (chan->monitor_timeout) {
|
||||
l2cap_set_timer(chan, &chan->monitor_timer,
|
||||
msecs_to_jiffies(chan->monitor_timeout));
|
||||
secs_to_jiffies(chan->monitor_timeout));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue