Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87b0ef91 authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: dma-mapping compile fixes.



Silly bug, make it build again..

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 19f9a34f
Loading
Loading
Loading
Loading
+25 −17
Original line number Diff line number Diff line
@@ -141,25 +141,35 @@ static inline void dma_sync_sg(struct device *dev, struct scatterlist *sg,
	}
}

static void dma_sync_single_for_cpu(struct device *dev,
static inline void dma_sync_single_for_cpu(struct device *dev,
					   dma_addr_t dma_handle, size_t size,
					   enum dma_data_direction dir)
	__attribute__ ((alias("dma_sync_single")));
{
	dma_sync_single(dev, dma_handle, size, dir);
}

static void dma_sync_single_for_device(struct device *dev,
				       dma_addr_t dma_handle, size_t size,
static inline void dma_sync_single_for_device(struct device *dev,
					      dma_addr_t dma_handle,
					      size_t size,
					      enum dma_data_direction dir)
	__attribute__ ((alias("dma_sync_single")));
{
	dma_sync_single(dev, dma_handle, size, dir);
}

static void dma_sync_sg_for_cpu(struct device *dev,
static inline void dma_sync_sg_for_cpu(struct device *dev,
				       struct scatterlist *sg, int nelems,
				       enum dma_data_direction dir)
	__attribute__ ((alias("dma_sync_sg")));
{
	dma_sync_sg(dev, sg, nelems, dir);
}

static void dma_sync_sg_for_device(struct device *dev,
static inline void dma_sync_sg_for_device(struct device *dev,
					  struct scatterlist *sg, int nelems,
					  enum dma_data_direction dir)
	__attribute__ ((alias("dma_sync_sg")));
{
	dma_sync_sg(dev, sg, nelems, dir);
}


static inline int dma_get_cache_alignment(void)
{
@@ -174,6 +184,4 @@ static inline int dma_mapping_error(dma_addr_t dma_addr)
{
	return dma_addr == 0;
}

#endif /* __ASM_SH_DMA_MAPPING_H */