diff options
author | David S. Miller <davem@davemloft.net> | 2008-08-07 18:52:57 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-08-07 18:52:57 -0700 |
commit | 22c7fdf4a7acfa24d9d498b1357e6c07d0e6c553 (patch) | |
tree | 040ce9c55cb285c5eff565942f313a07e157fbb2 /drivers/dma/ioat_dma.c | |
parent | 5423b2ed25993e13009ce39f55d742c3c6d03edb (diff) | |
parent | 86b89eed9aca2a4a335b9c1bf7380f9183db431f (diff) |
Merge branch 'ath9k' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6
Diffstat (limited to 'drivers/dma/ioat_dma.c')
-rw-r--r-- | drivers/dma/ioat_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ioat_dma.c b/drivers/dma/ioat_dma.c index a52156e5688..bc8c6e3470c 100644 --- a/drivers/dma/ioat_dma.c +++ b/drivers/dma/ioat_dma.c @@ -551,7 +551,7 @@ static dma_cookie_t ioat1_tx_submit(struct dma_async_tx_descriptor *tx) /* write address into NextDescriptor field of last desc in chain */ to_ioat_desc(ioat_chan->used_desc.prev)->hw->next = first->async_tx.phys; - __list_splice(&new_chain, ioat_chan->used_desc.prev); + list_splice_tail(&new_chain, &ioat_chan->used_desc); ioat_chan->dmacount += desc_count; ioat_chan->pending += desc_count; |