Commit 4c2f6d4c authored by saeed bishara's avatar saeed bishara Committed by Jens Axboe

use sg helper function in DMA mapping documentation

Signed-off-by: default avatarSaeed Bishara <saeed.bishara@gmail.com>
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent 563063a8
...@@ -514,7 +514,7 @@ With scatterlists, you map a region gathered from several regions by: ...@@ -514,7 +514,7 @@ With scatterlists, you map a region gathered from several regions by:
int i, count = pci_map_sg(dev, sglist, nents, direction); int i, count = pci_map_sg(dev, sglist, nents, direction);
struct scatterlist *sg; 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_address[i] = sg_dma_address(sg);
hw_len[i] = sg_dma_len(sg); hw_len[i] = sg_dma_len(sg);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment