platform/x86/amd/pmf: convert timeouts to secs_to_jiffies()

JIRA: https://issues.redhat.com/browse/RHEL-105420

commit 96b8f4658b70ac2efe543ddbeb328b5b1941a571
Author: Easwar Hariharan <easwar.hariharan@linux.microsoft.com>
Date:   Tue Feb 25 20:17:28 2025 +0000

    platform/x86/amd/pmf: convert timeouts to secs_to_jiffies()

    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-14-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>

Signed-off-by: David Arcari <darcari@redhat.com>
This commit is contained in:
David Arcari 2025-09-18 15:17:59 -04:00
parent 45f2db52c6
commit f5e52a6076
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ static void apmf_sbios_heartbeat_notify(struct work_struct *work)
if (!info)
return;
schedule_delayed_work(&dev->heart_beat, msecs_to_jiffies(dev->hb_interval * 1000));
schedule_delayed_work(&dev->heart_beat, secs_to_jiffies(dev->hb_interval));
kfree(info);
}