From: Suman Anna Date: Mon, 23 Jul 2018 23:27:57 +0000 (-0500) Subject: remoteproc/davinci: Mark error recovery as disabled X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=491278b698774d3b0d8974acfc994cc482e95485;p=linux.git remoteproc/davinci: Mark error recovery as disabled The Davinci remoteproc driver does not support error recovery at present, so mark the corresponding remoteproc flag appropriately so that the debugfs flag shows the value as 'disabled' by default. Signed-off-by: Suman Anna Signed-off-by: Bjorn Andersson --- diff --git a/drivers/remoteproc/da8xx_remoteproc.c b/drivers/remoteproc/da8xx_remoteproc.c index b668e32996e21..53160d5ed5430 100644 --- a/drivers/remoteproc/da8xx_remoteproc.c +++ b/drivers/remoteproc/da8xx_remoteproc.c @@ -284,6 +284,9 @@ static int da8xx_rproc_probe(struct platform_device *pdev) goto free_mem; } + /* error recovery is not supported at present */ + rproc->recovery_disabled = true; + drproc = rproc->priv; drproc->rproc = rproc; drproc->dsp_clk = dsp_clk;