Re: [PATCH v3 14/19] wifi: ath11k: Convert timeouts to secs_to_jiffies()
From: Kalle Valo
Date: Wed Dec 11 2024 - 02:46:03 EST
Kalle Valo <kvalo@xxxxxxxxxx> writes:
> Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx> writes:
>
>> 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:
>>
>> @@ constant C; @@
>>
>> - msecs_to_jiffies(C * 1000)
>> + secs_to_jiffies(C)
>>
>> @@ constant C; @@
>>
>> - msecs_to_jiffies(C * MSEC_PER_SEC)
>> + secs_to_jiffies(C)
>>
>> Acked-by: Jeff Johnson <quic_jjohnson@xxxxxxxxxxx>
>> Signed-off-by: Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx>
>> ---
>> drivers/net/wireless/ath/ath11k/debugfs.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> I assume we can take this to our ath.git tree, please let us know if
> that's not the case.
Nevermind, I now saw the discussion in the cover letter and assume that
this patch will be sent separately.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches