[PATCH 1/1] dma: imx-sdma: setup dma mask
Sascha Hauer
s.hauer at pengutronix.de
Wed Oct 2 04:33:29 EDT 2013
On Tue, Oct 01, 2013 at 12:31:04PM +0200, Philippe Rétornaz wrote:
> The dma mask is not configured in the current code.
> This was triggered by soc-dmaengine-pcm which allocate the dma
> buffers with the imx-sdma as device.
> This commit fix audio on imx31.
>
> Signed-off-by: Philippe Rétornaz <philippe.retornaz at epfl.ch>
Acked-by: Sascha Hauer <s.hauer at pengutronix.de>
Sascha
> ---
> drivers/dma/imx-sdma.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index fc43603..c1fd504 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -1432,6 +1432,10 @@ static int __init sdma_probe(struct platform_device *pdev)
> return -EINVAL;
> }
>
> + ret = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
> + if (ret)
> + return ret;
> +
> sdma = kzalloc(sizeof(*sdma), GFP_KERNEL);
> if (!sdma)
> return -ENOMEM;
> --
> 1.7.9.5
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the linux-arm-kernel
mailing list