Commit d17dd2db authored by Kees Cook's avatar Kees Cook Committed by Mauro Carvalho Chehab

[media] media/i2c/tc358743: Initialize timer

This converts to use setup_timer() to set callback and data, though it
doesn't look like this would have worked with timer checking enabled
since no init_timer() was ever called before.

Cc: Mats Randgaard <matrandg@cisco.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 02005cb2
...@@ -2147,8 +2147,8 @@ static int tc358743_probe(struct i2c_client *client, ...@@ -2147,8 +2147,8 @@ static int tc358743_probe(struct i2c_client *client,
} else { } else {
INIT_WORK(&state->work_i2c_poll, INIT_WORK(&state->work_i2c_poll,
tc358743_work_i2c_poll); tc358743_work_i2c_poll);
state->timer.data = (unsigned long)state; setup_timer(&state->timer, tc358743_irq_poll_timer,
state->timer.function = tc358743_irq_poll_timer; (unsigned long)state);
state->timer.expires = jiffies + state->timer.expires = jiffies +
msecs_to_jiffies(POLL_INTERVAL_MS); msecs_to_jiffies(POLL_INTERVAL_MS);
add_timer(&state->timer); add_timer(&state->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