remoteproc: Update last rproc_put users to rproc_free

The transition from rproc_put to rproc_free raced with the review of the
Qualcomm ADSP and ST SLIMproc drivers and these where not updated
accordingly.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Šī revīzija ir iekļauta:
Bjorn Andersson
2016-11-19 22:42:55 -08:00
vecāks 6242347226
revīzija 90a80d88d2
2 mainīti faili ar 4 papildinājumiem un 4 dzēšanām

Parādīt failu

@@ -330,7 +330,7 @@ err_clk_put:
for (i = 0; i < ST_SLIM_MAX_CLK && slim_rproc->clks[i]; i++)
clk_put(slim_rproc->clks[i]);
err:
rproc_put(rproc);
rproc_free(rproc);
return ERR_PTR(err);
}
EXPORT_SYMBOL(st_slim_rproc_alloc);
@@ -355,7 +355,7 @@ void st_slim_rproc_put(struct st_slim_rproc *slim_rproc)
clk_put(slim_rproc->clks[clk]);
rproc_del(slim_rproc->rproc);
rproc_put(slim_rproc->rproc);
rproc_free(slim_rproc->rproc);
}
EXPORT_SYMBOL(st_slim_rproc_put);