[PATCH v2 03/21] arm: pxa: Convert timeouts to use secs_to_jiffies()
Christophe Leroy
christophe.leroy at csgroup.eu
Sat Nov 16 10:26:51 UTC 2024
Le 15/11/2024 à 22:26, Easwar Hariharan a écrit :
> [Vous ne recevez pas souvent de courriers de eahariha at linux.microsoft.com. Découvrez pourquoi ceci est important à https://aka.ms/LearnAboutSenderIdentification ]
>
> Changes made with the following Coccinelle rules:
>
> @@ constant C; @@
>
> - msecs_to_jiffies(C * 1000)
> + secs_to_jiffies(C)
>
> @@ constant C; @@
>
> - msecs_to_jiffies(C * MSEC_PER_SEC)
> + secs_to_jiffies(C)
>
> Signed-off-by: Easwar Hariharan <eahariha at linux.microsoft.com>
> ---
> arch/arm/mach-pxa/sharpsl_pm.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-pxa/sharpsl_pm.c b/arch/arm/mach-pxa/sharpsl_pm.c
> index 72fa2e3fd35318e5a63c121ed7990a56a56b134c..bbbd06bc79bbb94fb258562e5a382acaf3c277b3 100644
> --- a/arch/arm/mach-pxa/sharpsl_pm.c
> +++ b/arch/arm/mach-pxa/sharpsl_pm.c
> @@ -31,9 +31,9 @@
> /*
> * Constants
> */
> -#define SHARPSL_CHARGE_ON_TIME_INTERVAL (msecs_to_jiffies(1*60*1000)) /* 1 min */
> -#define SHARPSL_CHARGE_FINISH_TIME (msecs_to_jiffies(10*60*1000)) /* 10 min */
> -#define SHARPSL_BATCHK_TIME (msecs_to_jiffies(15*1000)) /* 15 sec */
> +#define SHARPSL_CHARGE_ON_TIME_INTERVAL (secs_to_jiffies(60)) /* 1 min */
> +#define SHARPSL_CHARGE_FINISH_TIME (secs_to_jiffies(10*60)) /* 10 min */
> +#define SHARPSL_BATCHK_TIME (secs_to_jiffies(15)) /* 15 sec */
This comment is completely useless now.
The other ones are probably also kind of useless, everybody knows 1 min
= 60 sec. See https://docs.kernel.org/process/coding-style.html#commenting
> #define SHARPSL_BATCHK_TIME_SUSPEND (60*10) /* 10 min */
>
> #define SHARPSL_WAIT_CO_TIME 15 /* 15 sec */
>
> --
> 2.34.1
>
More information about the dri-devel
mailing list