Commit e395f9ce authored by Bjorn Andersson's avatar Bjorn Andersson Committed by Bjorn Andersson

remoteproc: core: Make the loaded resource table optional

Remote processors like the ones found in the Qualcomm SoCs does not have
a resource table passed to them, so make it optional by only populating
it if it does exist.
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@sonymobile.com>
Signed-off-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
parent 3d87fa1d
...@@ -856,12 +856,8 @@ static int rproc_fw_boot(struct rproc *rproc, const struct firmware *fw) ...@@ -856,12 +856,8 @@ static int rproc_fw_boot(struct rproc *rproc, const struct firmware *fw)
* copy this information to device memory. * copy this information to device memory.
*/ */
loaded_table = rproc_find_loaded_rsc_table(rproc, fw); loaded_table = rproc_find_loaded_rsc_table(rproc, fw);
if (!loaded_table) { if (loaded_table)
ret = -EINVAL; memcpy(loaded_table, rproc->cached_table, tablesz);
goto clean_up;
}
memcpy(loaded_table, rproc->cached_table, tablesz);
/* power up the remote processor */ /* power up the remote processor */
ret = rproc->ops->start(rproc); ret = rproc->ops->start(rproc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment