drivers: usb: speedtch: use setup_timer() helper.
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais <allen.lkml@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
366bdc01e4
commit
32f44077f3
@ -874,16 +874,13 @@ static int speedtch_bind(struct usbatm_data *usbatm,
|
|||||||
usbatm->flags |= (use_isoc ? UDSL_USE_ISOC : 0);
|
usbatm->flags |= (use_isoc ? UDSL_USE_ISOC : 0);
|
||||||
|
|
||||||
INIT_WORK(&instance->status_check_work, speedtch_check_status);
|
INIT_WORK(&instance->status_check_work, speedtch_check_status);
|
||||||
init_timer(&instance->status_check_timer);
|
setup_timer(&instance->status_check_timer, speedtch_status_poll,
|
||||||
|
(unsigned long)instance);
|
||||||
instance->status_check_timer.function = speedtch_status_poll;
|
|
||||||
instance->status_check_timer.data = (unsigned long)instance;
|
|
||||||
instance->last_status = 0xff;
|
instance->last_status = 0xff;
|
||||||
instance->poll_delay = MIN_POLL_DELAY;
|
instance->poll_delay = MIN_POLL_DELAY;
|
||||||
|
|
||||||
init_timer(&instance->resubmit_timer);
|
setup_timer(&instance->resubmit_timer, speedtch_resubmit_int,
|
||||||
instance->resubmit_timer.function = speedtch_resubmit_int;
|
(unsigned long)instance);
|
||||||
instance->resubmit_timer.data = (unsigned long)instance;
|
|
||||||
|
|
||||||
instance->int_urb = usb_alloc_urb(0, GFP_KERNEL);
|
instance->int_urb = usb_alloc_urb(0, GFP_KERNEL);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user