diff options
author | Dan Williams <dan.j.williams@intel.com> | 2006-11-21 22:57:23 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-11-22 22:45:57 +0000 |
commit | 105ef9a0af1469a9dd906839dd4628aa9c013f58 (patch) | |
tree | 932c93e6fe5c11866b2b6348360a61f4528a0de1 /include | |
parent | 8de35efb6afa75f25415d54e21221eea759db261 (diff) | |
download | linux-3.10-105ef9a0af1469a9dd906839dd4628aa9c013f58.tar.gz linux-3.10-105ef9a0af1469a9dd906839dd4628aa9c013f58.tar.bz2 linux-3.10-105ef9a0af1469a9dd906839dd4628aa9c013f58.zip |
[ARM] 3942/1: ARM: comment: consistent_sync should not be called directly
/*
* Note: Drivers should NOT use this function directly, as it will break
* platforms with CONFIG_DMABOUNCE.
* Use the driver DMA support - see dma-mapping.h (dma_sync_*)
*/
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/dma-mapping.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-arm/dma-mapping.h b/include/asm-arm/dma-mapping.h index 55eb4dc3253..666617711c8 100644 --- a/include/asm-arm/dma-mapping.h +++ b/include/asm-arm/dma-mapping.h @@ -12,6 +12,10 @@ * uncached, unwrite-buffered mapped memory space for use with DMA * devices. This is the "generic" version. The PCI specific version * is in pci.h + * + * Note: Drivers should NOT use this function directly, as it will break + * platforms with CONFIG_DMABOUNCE. + * Use the driver DMA support - see dma-mapping.h (dma_sync_*) */ extern void consistent_sync(void *kaddr, size_t size, int rw); |