mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-12 20:31:49 +00:00
staging: ipath: ipath_sdma: Use setup_timer
Use the timer API function setup_timer instead of init_timer, removing the structure field assignments. Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
567ae32ad8
commit
7cc918a856
@ -400,9 +400,9 @@ static int alloc_sdma(struct ipath_devdata *dd)
|
||||
}
|
||||
dd->ipath_sdma_head_dma[0] = 0;
|
||||
|
||||
init_timer(&dd->ipath_sdma_vl15_timer);
|
||||
dd->ipath_sdma_vl15_timer.function = vl15_watchdog_timeout;
|
||||
dd->ipath_sdma_vl15_timer.data = (unsigned long)dd;
|
||||
setup_timer(&dd->ipath_sdma_vl15_timer, vl15_watchdog_timeout,
|
||||
(unsigned long)dd);
|
||||
|
||||
atomic_set(&dd->ipath_sdma_vl15_count, 0);
|
||||
|
||||
goto done;
|
||||
|
Loading…
x
Reference in New Issue
Block a user