Skip to content

Commit

Permalink
dmaengine: rcar-dmac: set scatter/gather max segment size
Browse files Browse the repository at this point in the history
Fix warning when running with CONFIG_DMA_API_DEBUG_SG=y by allocating a
device_dma_parameters structure and filling in the max segment size.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
  • Loading branch information
Wolfram Sang authored and vinodkoul committed Oct 7, 2018
1 parent cf1b2c3 commit 97d49c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/dma/sh/rcar-dmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ struct rcar_dmac {
struct dma_device engine;
struct device *dev;
void __iomem *iomem;
struct device_dma_parameters parms;

unsigned int n_channels;
struct rcar_dmac_chan *channels;
Expand Down Expand Up @@ -1792,6 +1793,8 @@ static int rcar_dmac_probe(struct platform_device *pdev)

dmac->dev = &pdev->dev;
platform_set_drvdata(pdev, dmac);
dmac->dev->dma_parms = &dmac->parms;
dma_set_max_seg_size(dmac->dev, RCAR_DMATCR_MASK);
dma_set_mask_and_coherent(dmac->dev, DMA_BIT_MASK(40));

ret = rcar_dmac_parse_of(&pdev->dev, dmac);
Expand Down

0 comments on commit 97d49c5

Please sign in to comment.