On Tue, 25 Feb 2025, Easwar Hariharan wrote: > Commit b35108a51cf7 ("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() to avoid the multiplication > > This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with > the following Coccinelle rules: > > @depends on patch@ > expression E; > @@ > > -msecs_to_jiffies > +secs_to_jiffies > (E > - * \( 1000 \| MSEC_PER_SEC \) > ) > > Signed-off-by: Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx> Applied to the review-ilpo-next branch. > --- > drivers/platform/x86/thinkpad_acpi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c > index ab1cade5ef231e9a9a520bc0cca82384c911a331..d269e791f7fbc2a8ccf96f28cb476beccb57c9a7 100644 > --- a/drivers/platform/x86/thinkpad_acpi.c > +++ b/drivers/platform/x86/thinkpad_acpi.c > @@ -8512,7 +8512,7 @@ static void fan_watchdog_reset(void) > if (fan_watchdog_maxinterval > 0 && > tpacpi_lifecycle != TPACPI_LIFE_EXITING) > mod_delayed_work(tpacpi_wq, &fan_watchdog_task, > - msecs_to_jiffies(fan_watchdog_maxinterval * 1000)); > + secs_to_jiffies(fan_watchdog_maxinterval)); > else > cancel_delayed_work(&fan_watchdog_task); > } -- i.