[PATCH v2 2/2] dmaengine: s3c24xx-dma: Add cyclic transfer support
Vasily Khoruzhick
anarsoul at gmail.com
Tue May 20 06:15:47 PDT 2014
On Tue, May 20, 2014 at 11:31 AM, Andy Shevchenko
<andriy.shevchenko at linux.intel.com> wrote:
> On Mon, 2014-05-19 at 20:05 +0300, Vasily Khoruzhick wrote:
>> Many audio interface drivers require support of cyclic transfers to work
>> correctly, for example Samsung ASoC DMA driver. This patch adds support
>> for cyclic transfers to the s3c24xx-dma driver
>
> Sorry, not mentioned earlier, but couple of nitpicks below. (I think you
> may wait for more comments and then decide what to do with mine)
>
>> + dev_dbg(&s3cdma->pdev->dev,
>> + "prepare cyclic transaction of %d bytes with period %d from %s\n",
>> + size, period, s3cchan->name);
>
> size and period are size_t, thus %zu.
Ok.
>> + /* Check last period length */
>> + if (i == (sg_len - 1))
>
> Redundant parenthesis.
Ok
>> + dsg->len = size - (period * i);
>> + if (direction == DMA_MEM_TO_DEV) {
>> + dsg->src_addr = addr + (period * i);
>
> Ditto.
Ok
>> + dsg->dst_addr = slave_addr;
>> + } else { /* DMA_DEV_TO_MEM */
>> + dsg->src_addr = slave_addr;
>> + dsg->dst_addr = addr + (period * i);
>
> Ditto.
Ok
More information about the linux-arm-kernel
mailing list