diff --git a/drivers/dma/cppi41.c b/drivers/dma/cppi41.c index 2f1994ec245f8179f07bedddfd51dd3d9084a09d..97f4d6c1b6b9c16aa070ce512d95750e6f68963f 100644 --- a/drivers/dma/cppi41.c +++ b/drivers/dma/cppi41.c @@ -462,7 +462,7 @@ static void cppi41_dma_issue_pending(struct dma_chan *chan) /* PM runtime paired with dmaengine_desc_get_callback_invoke */ error = pm_runtime_get(cdd->ddev.dev); - if (error < 0) { + if ((error != -EINPROGRESS) && error < 0) { dev_err(cdd->ddev.dev, "Failed to pm_runtime_get: %i\n", error);