Commit 82af03f7 authored by sayli karnik's avatar sayli karnik Committed by Greg Kroah-Hartman

staging: greybus: Use setup_timer function

This patch uses setup_timer function instead of initializing timer with the
function and data fields.
Signed-off-by: default avatarsayli karnik <karniksayli1995@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0e21fa46
......@@ -603,7 +603,6 @@ static int gb_loopback_async_operation(struct gb_loopback *gb, int type,
return -ENOMEM;
INIT_WORK(&op_async->work, gb_loopback_async_operation_work);
init_timer(&op_async->timer);
kref_init(&op_async->kref);
operation = gb_operation_create(gb->connection, type, request_size,
......@@ -634,9 +633,9 @@ static int gb_loopback_async_operation(struct gb_loopback *gb, int type,
if (ret)
goto error;
op_async->timer.function = gb_loopback_async_operation_timeout;
setup_timer(&op_async->timer, gb_loopback_async_operation_timeout,
(unsigned long)operation->id);
op_async->timer.expires = jiffies + gb->jiffy_timeout;
op_async->timer.data = (unsigned long)operation->id;
add_timer(&op_async->timer);
goto done;
......
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