mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
66ab63104f
The .map_sg() op now expects an error code instead of zero on failure. The only errno to return is -EINVAL in the case when DMA is not supported. Signed-off-by: Martin Oliveira <martin.oliveira@eideticom.com> Signed-off-by: Logan Gunthorpe <logang@deltatee.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
38 lines
946 B
C
38 lines
946 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Dummy DMA ops that always fail.
|
|
*/
|
|
#include <linux/dma-map-ops.h>
|
|
|
|
static int dma_dummy_mmap(struct device *dev, struct vm_area_struct *vma,
|
|
void *cpu_addr, dma_addr_t dma_addr, size_t size,
|
|
unsigned long attrs)
|
|
{
|
|
return -ENXIO;
|
|
}
|
|
|
|
static dma_addr_t dma_dummy_map_page(struct device *dev, struct page *page,
|
|
unsigned long offset, size_t size, enum dma_data_direction dir,
|
|
unsigned long attrs)
|
|
{
|
|
return DMA_MAPPING_ERROR;
|
|
}
|
|
|
|
static int dma_dummy_map_sg(struct device *dev, struct scatterlist *sgl,
|
|
int nelems, enum dma_data_direction dir,
|
|
unsigned long attrs)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
|
|
static int dma_dummy_supported(struct device *hwdev, u64 mask)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
const struct dma_map_ops dma_dummy_ops = {
|
|
.mmap = dma_dummy_mmap,
|
|
.map_page = dma_dummy_map_page,
|
|
.map_sg = dma_dummy_map_sg,
|
|
.dma_supported = dma_dummy_supported,
|
|
};
|