From: Bjorn Andersson Date: Fri, 5 Jan 2018 23:58:05 +0000 (-0800) Subject: remoteproc: Reset table_ptr on stop X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0a8b81cb2e413eff4cd9aeac7ef415150b699fb4;p=linux.git remoteproc: Reset table_ptr on stop The installed resource table is no longer accessible after stopping the remote, so update table_ptr to point to the local copy. Reviewed-By: Loic Pallardy Tested-By: Loic Pallardy Signed-off-by: Bjorn Andersson --- diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index 84e07d5b7c2c3..4170dfbd93bdb 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -1000,6 +1000,9 @@ static int rproc_stop(struct rproc *rproc) /* remove any subdevices for the remote processor */ rproc_remove_subdevices(rproc); + /* the installed resource table is no longer accessible */ + rproc->table_ptr = rproc->cached_table; + /* power off the remote processor */ ret = rproc->ops->stop(rproc); if (ret) {