Skip to content

Commit

Permalink
Merge branch fixes of git://git.kernel.org/pub/scm/linux/kernel/git/d…
Browse files Browse the repository at this point in the history
…jbw/dmaengine.git
  • Loading branch information
Vinod Koul committed Jan 31, 2012
2 parents bda3a47 + d07a74a commit a5044cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dma/dmatest.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ static int dmatest_add_channel(struct dma_chan *chan)
}
if (dma_has_cap(DMA_PQ, dma_dev->cap_mask)) {
cnt = dmatest_add_threads(dtc, DMA_PQ);
thread_count += cnt > 0 ?: 0;
thread_count += cnt > 0 ? cnt : 0;
}

pr_info("dmatest: Started %u threads using %s\n",
Expand Down

0 comments on commit a5044cd

Please sign in to comment.