Skip to content

Commit b3e8dc1

Browse files
easwarhij-intel
authored andcommitted
platform/x86: thinkpad_acpi: convert timeouts to secs_to_jiffies()
Commit b35108a ("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>
1 parent 80bb29f commit b3e8dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/platform/x86/thinkpad_acpi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8509,7 +8509,7 @@ static void fan_watchdog_reset(void)
85098509
if (fan_watchdog_maxinterval > 0 &&
85108510
tpacpi_lifecycle != TPACPI_LIFE_EXITING)
85118511
mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
8512-
msecs_to_jiffies(fan_watchdog_maxinterval * 1000));
8512+
secs_to_jiffies(fan_watchdog_maxinterval));
85138513
else
85148514
cancel_delayed_work(&fan_watchdog_task);
85158515
}

0 commit comments

Comments
 (0)