summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index fee3a51851..5028bfdd3c 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -718,6 +718,10 @@ void plugin_iram_init(char *iramstart, char *iramcopy, size_t iram_size,
718 memcpy(iramstart, iramcopy, iram_size); 718 memcpy(iramstart, iramcopy, iram_size);
719 memset(iedata, 0, iedata_size); 719 memset(iedata, 0, iedata_size);
720 memset(iramcopy, 0, iram_size); 720 memset(iramcopy, 0, iram_size);
721#if NUM_CORES > 1
722 /* writeback cleared iedata and iramcopy areas */
723 flush_icache();
724#endif
721} 725}
722#endif /* IRAM_STEAL */ 726#endif /* IRAM_STEAL */
723 727