Re: [PATCH v2 03/21] arm: pxa: Convert timeouts to use secs_to_jiffies()

2024-11-16 Thread Christophe Leroy
Le 15/11/2024 à 22:26, Easwar Hariharan a écrit : [Vous ne recevez pas souvent de courriers de eahar...@linux.microsoft.com. Découvrez pourquoi ceci est important à https://aka.ms/LearnAboutSenderIdentification ] Changes made with the following Coccinelle rules: @@ constant C; @@ - msecs_

[PATCH v2 03/21] arm: pxa: Convert timeouts to use secs_to_jiffies()

2024-11-15 Thread Easwar Hariharan
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 --- arch/arm/mach-pxa/sharpsl_pm.c | 6 +++--- 1 file changed, 3 i