The patch titled git-md-accel arm fix has been added to the -mm tree. Its filename is git-md-accel-arm-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: git-md-accel arm fix From: "Williams, Dan J" <dan.j.williams@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-arm/dma-mapping.h | 36 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff -puN include/asm-arm/dma-mapping.h~git-md-accel-arm-fix include/asm-arm/dma-mapping.h --- a/include/asm-arm/dma-mapping.h~git-md-accel-arm-fix +++ a/include/asm-arm/dma-mapping.h @@ -311,24 +311,6 @@ extern void dma_unmap_sg(struct device * #endif #ifndef CONFIG_DMABOUNCE -static inline void -dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle, - unsigned long offset, size_t size, - enum dma_data_direction direction) -{ - /* just sync everything, that's all the pci API can do */ - dma_sync_single_for_cpu(dev, dma_handle, offset+size, direction); -} - -static inline void -dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle, - unsigned long offset, size_t size, - enum dma_data_direction direction) -{ - /* just sync everything, that's all the pci API can do */ - dma_sync_single_for_device(dev, dma_handle, offset+size, direction); -} - /** * dma_sync_single_for_cpu * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices @@ -361,6 +343,24 @@ dma_sync_single_for_device(struct device if (!arch_is_coherent()) consistent_sync((void *)dma_to_virt(dev, handle), size, dir); } + +static inline void +dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle, + unsigned long offset, size_t size, + enum dma_data_direction direction) +{ + /* just sync everything, that's all the pci API can do */ + dma_sync_single_for_cpu(dev, dma_handle, offset+size, direction); +} + +static inline void +dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle, + unsigned long offset, size_t size, + enum dma_data_direction direction) +{ + /* just sync everything, that's all the pci API can do */ + dma_sync_single_for_device(dev, dma_handle, offset+size, direction); +} #else extern void dma_sync_single_range_for_cpu(struct device*, dma_addr_t, unsigned long, size_t, enum dma_data_direction); extern void dma_sync_single_range_for_device(struct device*, dma_addr_t, unsigned long, size_t, enum dma_data_direction); _ Patches currently in -mm which might be from dan.j.williams@xxxxxxxxx are git-md-accel.patch git-md-accel-arm-fix.patch git-ioat-vs-git-md-accel.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html