summaryrefslogtreecommitdiffstats
path: root/drivers/dma/ioat
diff options
context:
space:
mode:
authorGeliang Tang2017-04-09 03:41:30 +0200
committerVinod Koul2017-04-24 06:08:41 +0200
commit68747c5f3d81771cfc8be2ae98f70a1aea9175c3 (patch)
treeb381b59bcd6a3c934aa014ddab4e190f2237c401 /drivers/dma/ioat
parentdmaengine: imx-sdma: add 1ms delay to ensure SDMA channel is stopped (diff)
downloadkernel-qcow2-linux-68747c5f3d81771cfc8be2ae98f70a1aea9175c3.tar.gz
kernel-qcow2-linux-68747c5f3d81771cfc8be2ae98f70a1aea9175c3.tar.xz
kernel-qcow2-linux-68747c5f3d81771cfc8be2ae98f70a1aea9175c3.zip
dmaengine: ioat: use setup_timer
Use setup_timer() instead of init_timer() to simplify the code. Signed-off-by: Geliang Tang <geliangtang@gmail.com> Reviewed-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/ioat')
-rw-r--r--drivers/dma/ioat/init.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/dma/ioat/init.c b/drivers/dma/ioat/init.c
index cc5259b881d4..6ad4384b3fa8 100644
--- a/drivers/dma/ioat/init.c
+++ b/drivers/dma/ioat/init.c
@@ -760,9 +760,7 @@ ioat_init_channel(struct ioatdma_device *ioat_dma,
dma_cookie_init(&ioat_chan->dma_chan);
list_add_tail(&ioat_chan->dma_chan.device_node, &dma->channels);
ioat_dma->idx[idx] = ioat_chan;
- init_timer(&ioat_chan->timer);
- ioat_chan->timer.function = ioat_timer_event;
- ioat_chan->timer.data = data;
+ setup_timer(&ioat_chan->timer, ioat_timer_event, data);
tasklet_init(&ioat_chan->cleanup_task, ioat_cleanup_event, data);
}