diff options
Diffstat (limited to 'arch/arm/include/asm/dma-mapping.h')
| -rw-r--r-- | arch/arm/include/asm/dma-mapping.h | 18 | 
1 files changed, 8 insertions, 10 deletions
diff --git a/arch/arm/include/asm/dma-mapping.h b/arch/arm/include/asm/dma-mapping.h index 69ce0727edb..c226fe10553 100644 --- a/arch/arm/include/asm/dma-mapping.h +++ b/arch/arm/include/asm/dma-mapping.h @@ -144,16 +144,6 @@ static inline int dma_set_mask(struct device *dev, u64 dma_mask)  	return 0;  } -static inline int dma_get_cache_alignment(void) -{ -	return 32; -} - -static inline int dma_is_consistent(struct device *dev, dma_addr_t handle) -{ -	return !!arch_is_coherent(); -} -  /*   * DMA errors are defined by all-bits-set in the DMA address.   */ @@ -298,7 +288,15 @@ extern void dmabounce_unregister_dev(struct device *);   * DMA access and 1 if the buffer needs to be bounced.   *   */ +#ifdef CONFIG_SA1111  extern int dma_needs_bounce(struct device*, dma_addr_t, size_t); +#else +static inline int dma_needs_bounce(struct device *dev, dma_addr_t addr, +				   size_t size) +{ +	return 0; +} +#endif  /*   * The DMA API, implemented by dmabounce.c.  See below for descriptions.  | 
