From: Martin Oliveira Date: Thu, 29 Jul 2021 20:15:38 +0000 (-0600) Subject: dma-mapping: return error code from dma_dummy_map_sg() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=66ab63104f9cab09209851fef168f5972d791903;p=linux.git dma-mapping: return error code from dma_dummy_map_sg() 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 Signed-off-by: Logan Gunthorpe Signed-off-by: Christoph Hellwig --- diff --git a/kernel/dma/dummy.c b/kernel/dma/dummy.c index eacd4c5b10bf6..b492d59ac77ef 100644 --- a/kernel/dma/dummy.c +++ b/kernel/dma/dummy.c @@ -22,7 +22,7 @@ static int dma_dummy_map_sg(struct device *dev, struct scatterlist *sgl, int nelems, enum dma_data_direction dir, unsigned long attrs) { - return 0; + return -EINVAL; } static int dma_dummy_supported(struct device *hwdev, u64 mask)