Skip to content

Commit

Permalink
dmaengine: sirf: fix a typo in dma_prep_interleaved
Browse files Browse the repository at this point in the history
either DEV_TO_MEM or MEM_TO_DEV is supported, so change
OR to AND.

Signed-off-by: Barry Song <Baohua.Song@csr.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
  • Loading branch information
Barry Song authored and Vinod Koul committed Oct 24, 2012
1 parent 720dfd2 commit 5997e08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dma/sirf-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ static struct dma_async_tx_descriptor *sirfsoc_dma_prep_interleaved(
unsigned long iflags;
int ret;

if ((xt->dir != DMA_MEM_TO_DEV) || (xt->dir != DMA_DEV_TO_MEM)) {
if ((xt->dir != DMA_MEM_TO_DEV) && (xt->dir != DMA_DEV_TO_MEM)) {
ret = -EINVAL;
goto err_dir;
}
Expand Down

0 comments on commit 5997e08

Please sign in to comment.