Commit cd7b917c authored by Jan Stourac's avatar Jan Stourac Committed by Bartlomiej Zolnierkiewicz

video/console: use setup_timer and mod_timer instead of init_timer

Use setup_timer and mod_timer functions instead of initializing timer with
the function init_timer and data fields.
Signed-off-by: default avatarJan Stourac <xstourac@gmail.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent 561eb9d0
...@@ -412,11 +412,9 @@ static void fbcon_add_cursor_timer(struct fb_info *info) ...@@ -412,11 +412,9 @@ static void fbcon_add_cursor_timer(struct fb_info *info)
if (!info->queue.func) if (!info->queue.func)
INIT_WORK(&info->queue, fb_flashcursor); INIT_WORK(&info->queue, fb_flashcursor);
init_timer(&ops->cursor_timer); setup_timer(&ops->cursor_timer, cursor_timer_handler,
ops->cursor_timer.function = cursor_timer_handler; (unsigned long) info);
ops->cursor_timer.expires = jiffies + ops->cur_blink_jiffies; mod_timer(&ops->cursor_timer, jiffies + ops->cur_blink_jiffies);
ops->cursor_timer.data = (unsigned long ) info;
add_timer(&ops->cursor_timer);
ops->flags |= FBCON_FLAGS_CURSOR_TIMER; ops->flags |= FBCON_FLAGS_CURSOR_TIMER;
} }
} }
......
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