X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=Documentation%2FDMA-API.txt;h=b8e86460046e7ee3dba003c12de57ae2d6f7fb36;hb=f2e4bd2b37bf072babc6a1f6c2a7ef53b7b046ad;hp=d8b63d164e41193927af2c7fb41dcb0893f57878;hpb=af7a535688a758d15f06a98833e6a143b29af9de;p=karo-tx-linux.git diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt index d8b63d164e41..b8e86460046e 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); }