Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1736540 > unrolled thread

[PATCH 1/1] drivers:video: use setup_timer

Started byAllen Pais <allen.lkml@gmail.com>
First post2017-09-21 13:10 +0200
Last post2017-09-21 13:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 1/1] drivers:video: use setup_timer Allen Pais <allen.lkml@gmail.com> - 2017-09-21 13:10 +0200

#1736540 — [PATCH 1/1] drivers:video: use setup_timer

FromAllen Pais <allen.lkml@gmail.com>
Date2017-09-21 13:10 +0200
Subject[PATCH 1/1] drivers:video: use setup_timer
Message-ID<us7wK-cK-21@gated-at.bofh.it>
    Use setup_timer function instead of initializing timer with the
    function and data fields.

Signed-off-by: Allen Pais <allen.lkml@gmail.com>
---
 drivers/video/fbdev/pxa3xx-gcu.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/video/fbdev/pxa3xx-gcu.c b/drivers/video/fbdev/pxa3xx-gcu.c
index 933619d..c474751 100644
--- a/drivers/video/fbdev/pxa3xx-gcu.c
+++ b/drivers/video/fbdev/pxa3xx-gcu.c
@@ -520,9 +520,7 @@ static void pxa3xx_gcu_debug_timedout(unsigned long ptr)
 	QERROR("Timer DUMP");
 
 	/* init the timer structure */
-	init_timer(&pxa3xx_gcu_debug_timer);
-	pxa3xx_gcu_debug_timer.function = pxa3xx_gcu_debug_timedout;
-	pxa3xx_gcu_debug_timer.data = ptr;
+	setup_timer(&pxa3xx_gcu_debug_timer, pxa3xx_gcu_debug_timeout, ptr);
 	pxa3xx_gcu_debug_timer.expires = jiffies + 5*HZ; /* one second */
 
 	add_timer(&pxa3xx_gcu_debug_timer);
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web