Prev: drivers/net/amd8111e.c: Fix continuation line formats
Next: [stable] [PATCH] devmem: fix kmem write bug on memory holes
From: FUJITA Tomonori on 3 Feb 2010 22:20 dma_sync_single_for_cpu/for_device supports a partial sync so there is no point to have dma_sync_single_range (also dma_sync_single was obsoleted long ago, replaced with dma_sync_single_for_cpu/for_device). There is no user of dma_sync_single_range() in mainline and only Alpha architecture supports dma_sync_single_range(). So it's unlikely that someone out of the tree uses it. Signed-off-by: FUJITA Tomonori <fujita.tomonori(a)lab.ntt.co.jp> Cc: David Miller <davem(a)davemloft.net> Cc: James Bottomley <James.Bottomley(a)suse.de> --- Documentation/DMA-API.txt | 10 ---------- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt index c8db3d0..364a6cb 100644 --- a/Documentation/DMA-API.txt +++ b/Documentation/DMA-API.txt @@ -528,16 +528,6 @@ into the width returned by this call. It will also always be a power of two for easy alignment. void -dma_sync_single_range(struct device *dev, dma_addr_t dma_handle, - unsigned long offset, size_t size, - enum dma_data_direction direction) - -Does a partial sync, starting at offset and continuing for size. You -must be careful to observe the cache alignment and width when doing -anything like this. You must also be extra careful about accessing -memory you intend to sync partially. - -void dma_cache_sync(struct device *dev, void *vaddr, size_t size, enum dma_data_direction direction) -- 1.5.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |