From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751795AbdIULFj (ORCPT ); Thu, 21 Sep 2017 07:05:39 -0400 Received: from mail-pg0-f68.google.com ([74.125.83.68]:36131 "EHLO mail-pg0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751550AbdIULFh (ORCPT ); Thu, 21 Sep 2017 07:05:37 -0400 X-Google-Smtp-Source: AOwi7QCRQYmfIvXOgZqQ2l3U6KrMRPD6dNw5QN8akB1XLYQc85QC8o5jC68ko82tIULrhM8Hqjjl9A== From: Allen Pais To: linux-kernel@vger.kernel.org Cc: b.zolnierkie@samsung.com, linux-fbdev@vger.kernel.org, Allen Pais Subject: [PATCH 1/1] drivers:video: use setup_timer Date: Thu, 21 Sep 2017 16:35:31 +0530 Message-Id: <1505991931-30437-1-git-send-email-allen.lkml@gmail.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- 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