diff options
author | Ray Jui <rjui@broadcom.com> | 2014-10-09 11:44:54 -0700 |
---|---|---|
committer | Luis Henriques <luis.henriques@canonical.com> | 2014-11-13 11:48:29 +0000 |
commit | 2338c76ab77858b2b1eba258ef312f5986bd1782 (patch) | |
tree | 8d3ad97e4e7ef2a265ddb6b2ec5fc0efd8b7a893 /drivers/spi | |
parent | 34a01d869624f42d251ba9082b280c39c2496084 (diff) | |
download | linux-stable-2338c76ab77858b2b1eba258ef312f5986bd1782.tar.gz linux-stable-2338c76ab77858b2b1eba258ef312f5986bd1782.tar.bz2 linux-stable-2338c76ab77858b2b1eba258ef312f5986bd1782.zip |
spi: pl022: Fix incorrect dma_unmap_sg
commit 3ffa6158f002e096d28ede71be4e0ee8ab20baa2 upstream.
When mapped RX DMA entries are unmapped in an error condition when DMA
is firstly configured in the driver, the number of TX DMA entries was
passed in, which is incorrect
Signed-off-by: Ray Jui <rjui@broadcom.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-pl022.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c index 66d2ae21e78e..abc69c00e693 100644 --- a/drivers/spi/spi-pl022.c +++ b/drivers/spi/spi-pl022.c @@ -1074,7 +1074,7 @@ err_rxdesc: pl022->sgt_tx.nents, DMA_TO_DEVICE); err_tx_sgmap: dma_unmap_sg(rxchan->device->dev, pl022->sgt_rx.sgl, - pl022->sgt_tx.nents, DMA_FROM_DEVICE); + pl022->sgt_rx.nents, DMA_FROM_DEVICE); err_rx_sgmap: sg_free_table(&pl022->sgt_tx); err_alloc_tx_sg: |