]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
platform/x86: thinkpad_acpi: convert timeouts to secs_to_jiffies()
authorEaswar Hariharan <eahariha@linux.microsoft.com>
Tue, 25 Feb 2025 20:17:29 +0000 (20:17 +0000)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Fri, 21 Mar 2025 15:53:54 +0000 (17:53 +0200)
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@linux.microsoft.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Link: https://lore.kernel.org/r/20250225-converge-secs-to-jiffies-part-two-v3-15-a43967e36c88@linux.microsoft.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/thinkpad_acpi.c

index 4a581a6d66779cfa531afaaf3c2482d00930ac49..d8df1405edfa076c023b22a8042500776e8b0ee4 100644 (file)
@@ -8509,7 +8509,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);
 }