Commit fb9bbce6 authored by Allen Pais's avatar Allen Pais Committed by Greg Kroah-Hartman

usb: gadget: udc: snps_udc_core: use setup_timer() helper.

   Use setup_timer function instead of initializing timer with the
   function and data fields.
Signed-off-by: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent eb72ca98
...@@ -3207,13 +3207,9 @@ int udc_probe(struct udc *dev) ...@@ -3207,13 +3207,9 @@ int udc_probe(struct udc *dev)
goto finished; goto finished;
/* timer init */ /* timer init */
init_timer(&udc_timer); setup_timer(&udc_timer, udc_timer_function, 1);
udc_timer.function = udc_timer_function;
udc_timer.data = 1;
/* timer pollstall init */ /* timer pollstall init */
init_timer(&udc_pollstall_timer); setup_timer(&udc_pollstall_timer, udc_pollstall_timer_function, 1);
udc_pollstall_timer.function = udc_pollstall_timer_function;
udc_pollstall_timer.data = 1;
/* set SD */ /* set SD */
reg = readl(&dev->regs->ctl); reg = readl(&dev->regs->ctl);
......
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