diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-13 16:51:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-13 16:51:59 -0700 |
commit | 53eeb64e808971207350386121f4bab12fa2f45f (patch) | |
tree | 74c98b6fff0095b7554edcfe69eb5ab3b22d2d1b | |
parent | 8c35bf368c4e533d07610810e4c3b84c34c8e201 (diff) | |
parent | c50a898fd4e736623ee175920db056194e0bb483 (diff) | |
download | op-kernel-dev-53eeb64e808971207350386121f4bab12fa2f45f.zip op-kernel-dev-53eeb64e808971207350386121f4bab12fa2f45f.tar.gz |
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx
* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx:
ioat2: fix performance regression
-rw-r--r-- | drivers/dma/ioat/dma_v2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ioat/dma_v2.c b/drivers/dma/ioat/dma_v2.c index 216f9d3..effd140 100644 --- a/drivers/dma/ioat/dma_v2.c +++ b/drivers/dma/ioat/dma_v2.c @@ -879,7 +879,7 @@ int __devinit ioat2_dma_probe(struct ioatdma_device *device, int dca) dma->device_issue_pending = ioat2_issue_pending; dma->device_alloc_chan_resources = ioat2_alloc_chan_resources; dma->device_free_chan_resources = ioat2_free_chan_resources; - dma->device_tx_status = ioat_tx_status; + dma->device_tx_status = ioat_dma_tx_status; err = ioat_probe(device); if (err) |