From: FUJITA Tomonori Date: Thu, 18 Sep 2008 16:35:28 +0000 (-0700) Subject: fix an example of scatterlists handling in DMA-API.txt X-Git-Tag: v3.12-rc1~18239^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=79eb014578b79fcfb9d9e7dc979d1316079220aa;p=kernel%2Fkernel-generic.git fix an example of scatterlists handling in DMA-API.txt This example isn't the proper way to handle scatterlists (can't handle sg chaining). Signed-off-by: FUJITA Tomonori Signed-off-by: Jens Axboe --- diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt index d8b63d1..b8e8646 100644 --- a/Documentation/DMA-API.txt +++ b/Documentation/DMA-API.txt @@ -337,7 +337,7 @@ With scatterlists, you use the resulting mapping like this: int i, count = dma_map_sg(dev, sglist, nents, direction); struct scatterlist *sg; - for (i = 0, sg = sglist; i < count; i++, sg++) { + for_each_sg(sglist, sg, count, i) { hw_address[i] = sg_dma_address(sg); hw_len[i] = sg_dma_len(sg); }