From bb4d48b875a9ad329543551452409abb73675dad Mon Sep 17 00:00:00 2001 From: Ben Levinsky Date: Mon, 13 Feb 2023 08:33:55 -0800 Subject: [PATCH] openamp: fix remoteproc_load_noblock hasn't update rsc_io This addressess issue https://github.com/OpenAMP/open-amp/issues/427 Signed-off-by: Ben Levinsky --- lib/remoteproc/remoteproc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/remoteproc/remoteproc.c b/lib/remoteproc/remoteproc.c index f7f9f2df8..ad16a2d7e 100644 --- a/lib/remoteproc/remoteproc.c +++ b/lib/remoteproc/remoteproc.c @@ -847,6 +847,7 @@ int remoteproc_load_noblock(struct remoteproc *rproc, } rproc->rsc_table = rsc_table; rproc->rsc_len = rsc_size; + rproc->rsc_io = *io; metal_free_memory(lrsc_table); }