diff options
author | Christoph Hellwig <hch@lst.de> | 2024-07-19 07:07:38 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2024-08-29 07:22:49 +0300 |
commit | 334304ac2baca7f3e821c47cf5129d90e7a6b1e6 (patch) | |
tree | 97bf1f87e108962f636331aa4f9ac4b0a5627a96 /drivers/dma/pl330.c | |
parent | 560a861ab4174b42240157ab5cebe36b8c7bc418 (diff) | |
download | linux-334304ac2baca7f3e821c47cf5129d90e7a6b1e6.tar.xz |
dma-mapping: don't return errors from dma_set_max_seg_size
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>
Acked-by: Ulf Hansson <ulf.hansson@linaro.org> # For MMC
Diffstat (limited to 'drivers/dma/pl330.c')
-rw-r--r-- | drivers/dma/pl330.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index 60c4de8dac1d..82a9fe88ad54 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c @@ -3163,10 +3163,7 @@ pl330_probe(struct amba_device *adev, const struct amba_id *id) * This is the limit for transfers with a buswidth of 1, larger * buswidths will have larger limits. */ - ret = dma_set_max_seg_size(&adev->dev, 1900800); - if (ret) - dev_err(&adev->dev, "unable to set the seg size\n"); - + dma_set_max_seg_size(&adev->dev, 1900800); init_pl330_debugfs(pl330); dev_info(&adev->dev, |