diff options
author | 2024-07-19 06:10:24 +0200 | |
---|---|---|
committer | 2024-08-29 07:22:36 +0300 | |
commit | c42a01264ba1497eb3193c08ff3c2656d98250a6 (patch) | |
tree | d6cfae6000540ffa1c53db3a8f9fa1e5d8996710 | |
parent | scsi: check that busses support the DMA API before setting dma parameters (diff) | |
download | wireguard-linux-c42a01264ba1497eb3193c08ff3c2656d98250a6.tar.xz wireguard-linux-c42a01264ba1497eb3193c08ff3c2656d98250a6.zip |
dma-mapping: don't return errors from dma_set_min_align_mask
A NULL dev->dma_parms indicates either a bus that is not DMA capable or
grave bug in the implementation of the bus code.
There isn't much the driver can do in terms of error handling for either
case, so just warn and continue as DMA operations will fail anyway.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to '')
-rw-r--r-- | include/linux/dma-mapping.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index f693aafe221f..cfd6bafec3f9 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h @@ -575,13 +575,12 @@ static inline unsigned int dma_get_min_align_mask(struct device *dev) return 0; } -static inline int dma_set_min_align_mask(struct device *dev, +static inline void dma_set_min_align_mask(struct device *dev, unsigned int min_align_mask) { if (WARN_ON_ONCE(!dev->dma_parms)) - return -EIO; + return; dev->dma_parms->min_align_mask = min_align_mask; - return 0; } #ifndef dma_get_cache_alignment |