From: Michal Suchanek Date: Wed, 3 Jun 2015 21:26:41 +0000 (+0000) Subject: dmaengine: pl330: fix wording in mcbufsz message X-Git-Tag: v4.2-rc1~70^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e5489d5e9031e34d50f03e3d132f392314e74cf1;p=karo-tx-linux.git dmaengine: pl330: fix wording in mcbufsz message The kernel is not trying to increase mcbufsz. It suggests you should try doing so. Also print the calculated required size of mcbufsz. Signed-off-by: Michal Suchanek Reviewed-by: Krzysztof Kozlowski Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index 7e2714478e45..3781f327eedc 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c @@ -1424,8 +1424,8 @@ static int pl330_submit_req(struct pl330_thread *thrd, goto xfer_exit; if (ret > pl330->mcbufsz / 2) { - dev_info(pl330->ddma.dev, "%s:%d Trying increasing mcbufsz\n", - __func__, __LINE__); + dev_info(pl330->ddma.dev, "%s:%d Try increasing mcbufsz (%i/%i)\n", + __func__, __LINE__, ret, pl330->mcbufsz / 2); ret = -ENOMEM; goto xfer_exit; }