Commit 7932589f authored by Kees Cook's avatar Kees Cook

scsi: gdth: Convert timers to use timer_setup()

In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly.

Cc: "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
Cc: "Martin K. Petersen" <martin.petersen@oracle.com>
Cc: linux-scsi@vger.kernel.org
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Reviewed-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 13059106
...@@ -3705,7 +3705,7 @@ static void gdth_log_event(gdth_evt_data *dvr, char *buffer) ...@@ -3705,7 +3705,7 @@ static void gdth_log_event(gdth_evt_data *dvr, char *buffer)
#ifdef GDTH_STATISTICS #ifdef GDTH_STATISTICS
static u8 gdth_timer_running; static u8 gdth_timer_running;
static void gdth_timeout(unsigned long data) static void gdth_timeout(struct timer_list *unused)
{ {
u32 i; u32 i;
Scsi_Cmnd *nscp; Scsi_Cmnd *nscp;
...@@ -3743,8 +3743,6 @@ static void gdth_timer_init(void) ...@@ -3743,8 +3743,6 @@ static void gdth_timer_init(void)
gdth_timer_running = 1; gdth_timer_running = 1;
TRACE2(("gdth_detect(): Initializing timer !\n")); TRACE2(("gdth_detect(): Initializing timer !\n"));
gdth_timer.expires = jiffies + HZ; gdth_timer.expires = jiffies + HZ;
gdth_timer.data = 0L;
gdth_timer.function = gdth_timeout;
add_timer(&gdth_timer); add_timer(&gdth_timer);
} }
#else #else
...@@ -5165,7 +5163,7 @@ static int __init gdth_init(void) ...@@ -5165,7 +5163,7 @@ static int __init gdth_init(void)
/* initializations */ /* initializations */
gdth_polling = TRUE; gdth_polling = TRUE;
gdth_clear_events(); gdth_clear_events();
init_timer(&gdth_timer); timer_setup(&gdth_timer, gdth_timeout, 0);
/* As default we do not probe for EISA or ISA controllers */ /* As default we do not probe for EISA or ISA controllers */
if (probe_eisa_isa) { if (probe_eisa_isa) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment