diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-14 01:51:59 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-10-14 01:51:59 +0200 |
commit | 53eeb64e808971207350386121f4bab12fa2f45f (patch) | |
tree | 74c98b6fff0095b7554edcfe69eb5ab3b22d2d1b /drivers | |
parent | Merge branch 'for-2.6.36' of git://linux-nfs.org/~bfields/linux (diff) | |
parent | ioat2: fix performance regression (diff) | |
download | linux-53eeb64e808971207350386121f4bab12fa2f45f.tar.xz linux-53eeb64e808971207350386121f4bab12fa2f45f.zip |
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
Diffstat (limited to 'drivers')
-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 216f9d383b5b..effd140fc042 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) |