]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
drm/etnaviv: Convert timeouts to secs_to_jiffies()
authorEaswar Hariharan <eahariha@linux.microsoft.com>
Fri, 15 Nov 2024 21:26:26 +0000 (21:26 +0000)
committerLucas Stach <l.stach@pengutronix.de>
Tue, 3 Dec 2024 17:29:48 +0000 (18:29 +0100)
commit16ab70e8dabe4f26b2de1c13e1937e190b0d2d24
tree3e66770a6b6837a0c7a645baba8b7d5f618f051b
parent834f304192834d6f0941954f3277ae0ba11a9a86
drm/etnaviv: Convert timeouts to secs_to_jiffies()

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@linux.microsoft.com>
Reviewed-by: Christian Gmeiner <cgmeiner@igalia.com>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
drivers/gpu/drm/etnaviv/etnaviv_cmdbuf.c