diff options
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DMA-API.txt | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt index 5aceb88b3f8b..bb0e75e368b2 100644 --- a/Documentation/DMA-API.txt +++ b/Documentation/DMA-API.txt | |||
@@ -364,34 +364,6 @@ API. | |||
364 | Note: <nents> must be the number you passed in, *not* the number of | 364 | Note: <nents> must be the number you passed in, *not* the number of |
365 | physical entries returned. | 365 | physical entries returned. |
366 | 366 | ||
367 | void | ||
368 | dma_sync_single(struct device *dev, dma_addr_t dma_handle, size_t size, | ||
369 | enum dma_data_direction direction) | ||
370 | void | ||
371 | pci_dma_sync_single(struct pci_dev *hwdev, dma_addr_t dma_handle, | ||
372 | size_t size, int direction) | ||
373 | void | ||
374 | dma_sync_sg(struct device *dev, struct scatterlist *sg, int nelems, | ||
375 | enum dma_data_direction direction) | ||
376 | void | ||
377 | pci_dma_sync_sg(struct pci_dev *hwdev, struct scatterlist *sg, | ||
378 | int nelems, int direction) | ||
379 | |||
380 | Synchronise a single contiguous or scatter/gather mapping. All the | ||
381 | parameters must be the same as those passed into the single mapping | ||
382 | API. | ||
383 | |||
384 | Notes: You must do this: | ||
385 | |||
386 | - Before reading values that have been written by DMA from the device | ||
387 | (use the DMA_FROM_DEVICE direction) | ||
388 | - After writing values that will be written to the device using DMA | ||
389 | (use the DMA_TO_DEVICE) direction | ||
390 | - before *and* after handing memory to the device if the memory is | ||
391 | DMA_BIDIRECTIONAL | ||
392 | |||
393 | See also dma_map_single(). | ||
394 | |||
395 | dma_addr_t | 367 | dma_addr_t |
396 | dma_map_single_attrs(struct device *dev, void *cpu_addr, size_t size, | 368 | dma_map_single_attrs(struct device *dev, void *cpu_addr, size_t size, |
397 | enum dma_data_direction dir, | 369 | enum dma_data_direction dir, |