This series converts users of msecs_to_jiffies() that either use the multiply pattern of either of: - msecs_to_jiffies(N*1000) or - msecs_to_jiffies(N*MSEC_PER_SEC) where N is a constant or an expression, to avoid the multiplication. The conversion is made with Coccinelle with the secs_to_jiffies() script in scripts/coccinelle/misc. Attention is paid to what the best change can be rather than restricting to what the tool provides. While here, convert a couple instances where the timeouts are denominated in seconds manually. This series is based on next-20250219 Signed-off-by: Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx> --- Easwar Hariharan (4): Bluetooth: hci_vhci: convert timeouts to secs_to_jiffies() Bluetooth: MGMT: convert timeouts to secs_to_jiffies() Bluetooth: SMP: convert timeouts to secs_to_jiffies() Bluetooth: L2CAP: convert timeouts to secs_to_jiffies() drivers/bluetooth/hci_vhci.c | 4 ++-- include/net/bluetooth/l2cap.h | 4 ++-- net/bluetooth/hci_sync.c | 2 +- net/bluetooth/l2cap_core.c | 4 ++-- net/bluetooth/mgmt.c | 6 +++--- net/bluetooth/smp.c | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) --- base-commit: 8936cec5cb6e27649b86fabf383d7ce4113bba49 change-id: 20250219-bluetooth-converge-secs-to-jiffies-22847c90dfe7 Best regards, -- Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx>